added -- protecetion around all dirname/basename calls
1 parent 070cb38 commit 5d0e931290f110645dc212b05aa9ce08bd9e8240
@tundra tundra authored on 28 Oct 2016
Showing 2 changed files
View
16
trm.sh
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
View
2
■■■
version
1.101
1.102