add symlink support and -s option to expand them
1 parent 25ad654 commit 9c6112ecdb4fe897d52f7a60a5810919e00f2df5
@tundra tundra authored on 25 Oct 2016
Showing 1 changed file
View
49
trm.sh
 
# Parse command line args
 
OPERATOR="mv" # Can be overriden with -c option
OPTLIST='ctdv' # List of all legal options
OPTLIST='cdtsv' # List of all legal command line options
OPTIND=1 # getopts may have been previously used in this context
TESTMODE=""
VERBOSE=""
 
 
# Empty the graveyard
d)
rm -rf ${VERBOSE} ${GRAVEYARD}/* ${GRAVEYARD}/.[-z]*
;;
 
# Expand symlinks
s)
SYMEXPAND="symexpand"
;;
 
# Don't do anything, just show what you would do
t)
 
shift $((OPTIND-1))
for arg in $*
do
REALPATH=$(readlink -f $arg)
 
# Only expand symlinks if we ask for it
 
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
 
# Process normal files and directories
else
REALPATH=$(readlink -f $arg)
fi
 
SRCDIR=$(dirname $REALPATH)
SRCFIL=$(basename $REALPATH)
DESDIR=${GRAVEYARD}${SRCDIR}
SERIAL=$(date +%Y%m%d%s%N)