| |
---|
| | # Copyright (c) 2016 TundraWare Inc., Des Plaines, IL USA |
---|
| | # All Rights Reserved |
---|
| | # Permission granted for the free use of this program without restriction |
---|
| | |
---|
| | export GRAVEYARD="${HOME}/.graveyard" |
---|
| | GRAVEYARD="${HOME}/.graveyard" |
---|
| | TESTING="Running in test mode ..." |
---|
| | |
---|
| | mkdir -p $GRAVEYARD |
---|
| | |
---|
| | # This function is called at the bottom of this file or it can |
---|
| | # be embedded in a shell startup script. |
---|
| |
---|
| | |
---|
| | # Parse command line args |
---|
| | |
---|
| | OPERATOR="mv" # Can be overriden with -c option |
---|
| | OPTLIST='cdg:tsv' # List of all legal command line options |
---|
| | OPTLIST='cdg:tsvx' # List of all legal command line options |
---|
| | OPTIND=1 # getopts may have been previously used in this context |
---|
| | TESTMODE="" |
---|
| | TESTMODE=${TESTING} |
---|
| | VERBOSE="" |
---|
| | |
---|
| | while getopts ${OPTLIST} opt |
---|
| | do |
---|
| |
---|
| | ;; |
---|
| | |
---|
| | # Don't do anything, just show what you would do |
---|
| | t) |
---|
| | TESTMODE="testmode" |
---|
| | TESTMODE=${TESTING} |
---|
| | ;; |
---|
| | |
---|
| | # Be noisy |
---|
| | v) |
---|
| | VERBOSE="-v" |
---|
| | ;; |
---|
| | |
---|
| | # Actually execute |
---|
| | x) |
---|
| | TESTMODE="" |
---|
| | ;; |
---|
| | |
---|
| | *) |
---|
| | echo "usage: trm.sh -${OPTLIST} [file|directory] ..." |
---|
| |
---|
| | CMD="${OPERATOR} $VERBOSE '${REALPATH}' '${DESDIR}/${DESFIL}'" |
---|
| | |
---|
| | if [ -n "${TESTMODE}" ] |
---|
| | then |
---|
| | echo ${TESTMODE} |
---|
| | echo ${CMD} |
---|
| | else |
---|
| | mkdir -p ${DESDIR} |
---|
| | eval ${CMD} |
---|
| |
---|
| | |