| |
---|
| | then |
---|
| | |
---|
| | # Bare symlink itelf |
---|
| | |
---|
| | REALPATH=$(readlink -f $(dirname "$1")) |
---|
| | REALPATH=$(readlink -f $(dirname -- "$1")) |
---|
| | if [ "${REALPATH}" = '/' ] |
---|
| | then |
---|
| | REALPATH="" |
---|
| | fi |
---|
| | |
---|
| | REALPATH="${REALPATH}"/$(basename "$1") |
---|
| | REALPATH="${REALPATH}"/$(basename -- "$1") |
---|
| | |
---|
| | # Process normal files and directories |
---|
| | |
---|
| | else |
---|
| |
---|
| | fi |
---|
| | |
---|
| | # Figure out absolute paths for source and destination |
---|
| | |
---|
| | SRCDIR=$(dirname "${REALPATH}") |
---|
| | SRCDIR=$(dirname -- "${REALPATH}") |
---|
| | if [ "${SRCDIR}" = '/' ] |
---|
| | then |
---|
| | SRCDIR="" |
---|
| | fi |
---|
| | |
---|
| | SRCFIL=$(basename "${REALPATH}") |
---|
| | SRCFIL=$(basename -- "${REALPATH}") |
---|
| | DESDIR="${GRAVEYARD}${SRCDIR}" |
---|
| | DESFIL="${SRCFIL}${SERIAL}" |
---|
| | CMD="${OPERATOR} $VERBOSE '${REALPATH}' '${DESDIR}/${DESFIL}'" |
---|
| | |
---|
| |
---|
| | # Run now if invoked directly on the command line. (Otherwise, we're |
---|
| | # just loading the function above into the current shell context.) |
---|
| | ##### |
---|
| | |
---|
| | # For some reason, bash on FreeBSD returns $0 with a leading "-" |
---|
| | # which breaks the logic if we don't scrub it out here. |
---|
| | |
---|
| | if [ $(basename $(echo "$0" | sed s/^-//)) = "trm.sh" ] |
---|
| | # Login shells report $0 with a leading "-". This breaks 'basename', |
---|
| | # so we have to tell it not to treat the dash as an option delimiter. |
---|
| | |
---|
| | if [ $(basename -- "$0") = "trm.sh" ] |
---|
| | then |
---|
| | trm "$@" |
---|
| | fi |
---|
| | |
---|
| | |