| |
---|
| | |
---|
| | # 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) |
---|
| |
---|
| | |