| |
---|
| | # All Rights Reserved |
---|
| | # Permission granted for the free use of this program without restriction |
---|
| | |
---|
| | GRAVEYARD="${HOME}/.graveyard" |
---|
| | TESTING="Running in test mode ..." |
---|
| | INTERPROMPT="Do You Want To Remove(Copy):" |
---|
| | TESTING="Test Mode ..." |
---|
| | |
---|
| | mkdir -p $GRAVEYARD |
---|
| | |
---|
| | # This function is called at the bottom of this file or it can |
---|
| |
---|
| | { |
---|
| | |
---|
| | # Parse command line args |
---|
| | |
---|
| | OPTLIST='cdg:istvx' # List of all legal command line options |
---|
| | OPTIND=1 # in case getopts was previously used in this context |
---|
| | |
---|
| | # Defaults |
---|
| | |
---|
| | INTERACTIVE="" |
---|
| | OPERATOR="mv" # Can be overriden with -c option |
---|
| | 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="" |
---|
| | |
---|
| |
---|
| | |
---|
| | # Name your own graveyard |
---|
| | g) |
---|
| | GRAVEYARD=${OPTARG} |
---|
| | ;; |
---|
| | |
---|
| | i) |
---|
| | INTERACTIVE="Yes" |
---|
| | ;; |
---|
| | |
---|
| | # Turn of serial number generation |
---|
| | s) |
---|
| |
---|
| | exit 1 |
---|
| | ;; |
---|
| | esac |
---|
| | done |
---|
| | |
---|
| | # Notify if in test mode |
---|
| | echo ${TESTMODE} |
---|
| | |
---|
| | # Process arguments |
---|
| | |
---|
| | shift $((OPTIND-1)) |
---|
| |
---|
| | |
---|
| | CMD="${OPERATOR} $VERBOSE '${REALPATH}' '${DESDIR}/${DESFIL}'" |
---|
| | if [ -n "${TESTMODE}" ] |
---|
| | then |
---|
| | echo ${TESTMODE} |
---|
| | echo ${CMD} |
---|
| | else |
---|
| | |
---|
| | # Handle interactive requests |
---|
| | if [ -n "${INTERACTIVE}" ] |
---|
| | then |
---|
| | echo -n "${INTERPROMPT} ${REALPATH}? " |
---|
| | read doit |
---|
| | |
---|
| | if [ "${doit}" != "y" ] && [ "${doit}" != "Y" ] |
---|
| | then |
---|
| | shift |
---|
| | continue |
---|
| | fi |
---|
| | |
---|
| | fi |
---|
| | |
---|
| | mkdir -p "${DESDIR}" |
---|
| | eval ${CMD} |
---|
| | fi |
---|
| | |
---|
| |
---|
| | } |
---|
| | |
---|
| | # Uncomment to invoke as a free standing utility |
---|
| | |
---|
| | # trm "$@" |
---|
| | trm "$@" |
---|
| | |
---|
| | |