remove symlink expansion option, make execution mode the default
1 parent 1a9e41c commit f72debe723bee7b48225002eee74a26eec2f43b7
@tundra tundra authored on 26 Oct 2016
Showing 1 changed file
View
39
trm.sh
 
# Parse command line args
 
OPERATOR="mv" # Can be overriden with -c option
OPTLIST='cdg:tsvx' # List of all legal command line options
OPTLIST='cdg:tvx' # List of all legal command line options
OPTIND=1 # getopts may have been previously used in this context
TESTMODE=${TESTING}
TESTMODE=""
VERBOSE=""
 
while getopts ${OPTLIST} opt
do
 
# Name your own graveyard
g)
GRAVEYARD=${OPTARG}
;;
 
# Expand symlinks
s)
SYMEXPAND="symexpand"
;;
 
# Don't do anything, just show what you would do
t)
shift $((OPTIND-1))
for arg in $*
do
 
# Only expand symlinks if we ask for it
 
# Symlinks require special care
if [ -L $arg ]
then
 
# Expand the symlink
if [ -n "${SYMEXPAND}" ]
then
REALPATH=$(readlink $arg)
 
# Treat the symlink as a normal file
else
REALPATH=$(readlink -f $(dirname $arg))/$arg
fi
REALPATH=$(readlink -f $(dirname $arg))/$arg
 
# Process normal files and directories
else
REALPATH=$(readlink -f $arg)
REALPATH=$(readlink -f $arg)
fi
 
SRCDIR=$(dirname $REALPATH)
SRCFIL=$(basename $REALPATH)
DESDIR=${GRAVEYARD}${SRCDIR}
SERIAL=$(date +%Y%m%d%s%N)
DESFIL="${SRCFIL}.${SERIAL}"
SERIAL=".$(date +%Y%m%d%s%N)"
DESFIL="${SRCFIL}${SERIAL}"
 
CMD="${OPERATOR} $VERBOSE '${REALPATH}' '${DESDIR}/${DESFIL}'"
 
if [ -n "${TESTMODE}" ]