8f0a81f559
This should make things run more nicely on systems like FreeBSD, where bash isn't installed in /bin.
7 lines
107 B
Bash
Executable File
7 lines
107 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
shopt -s extglob
|
|
echo cp "/${1##file:+(/)}" "${2}" 1>&2
|
|
cp "/${1##file:+(/)}" "${2}"
|
|
|