| |
---|
| | |
---|
| | # Parse command line args |
---|
| | |
---|
| | OPERATOR="mv" # Can be overriden with -c option |
---|
| | OPTLIST='cdg:tvx' # List of all legal command line options |
---|
| | OPTLIST='cdg:stvx' # List of all legal command line options |
---|
| | OPTIND=1 # getopts may have been previously used in this context |
---|
| | |
---|
| | SERIALNO="Yes" # Generate serial numbers |
---|
| | TESTMODE="" |
---|
| | VERBOSE="" |
---|
| | |
---|
| | while getopts ${OPTLIST} opt |
---|
| |
---|
| | |
---|
| | # Name your own graveyard |
---|
| | g) |
---|
| | GRAVEYARD=${OPTARG} |
---|
| | ;; |
---|
| | |
---|
| | # Turn of serial number generation |
---|
| | s) |
---|
| | SERIALNO="" |
---|
| | ;; |
---|
| | |
---|
| | # Don't do anything, just show what you would do |
---|
| | t) |
---|
| |
---|
| | else |
---|
| | REALPATH=$(readlink -f $arg) |
---|
| | fi |
---|
| | |
---|
| | # See if we want serial numbers |
---|
| | SERIAL="" |
---|
| | if [ -n "${SERIALNO}" ] |
---|
| | then |
---|
| | SERIAL=".$(date +%Y%m%d%H%M%S)" |
---|
| | fi |
---|
| | |
---|
| | SRCDIR=$(dirname $REALPATH) |
---|
| | SRCFIL=$(basename $REALPATH) |
---|
| | DESDIR=${GRAVEYARD}${SRCDIR} |
---|
| | SERIAL=".$(date +%Y%m%d%s%N)" |
---|
| | DESFIL="${SRCFIL}${SERIAL}" |
---|
| | |
---|
| | CMD="${OPERATOR} $VERBOSE '${REALPATH}' '${DESDIR}/${DESFIL}'" |
---|
| | |
---|
| |
---|
| | |