implemented -g option to specify custom graveyard locations
1 parent 9c6112e commit b842085b473e46c29353b7f7c3c541c6f41d31c9
@tundra tundra authored on 25 Oct 2016
Showing 1 changed file
View
11
trm.sh
{
 
# Parse command line args
 
OPERATOR="mv" # Can be overriden with -c option
OPTLIST='cdtsv' # List of all legal command line options
OPTIND=1 # getopts may have been previously used in this context
OPERATOR="mv" # Can be overriden with -c option
OPTLIST='cdg:tsv' # List of all legal command line options
OPTIND=1 # getopts may have been previously used in this context
TESTMODE=""
VERBOSE=""
 
while getopts ${OPTLIST} opt
 
# Empty the graveyard
d)
rm -rf ${VERBOSE} ${GRAVEYARD}/* ${GRAVEYARD}/.[-z]*
;;
 
# Name your own graveyard
g)
GRAVEYARD=${OPTARG}
;;
 
# Expand symlinks
s)