added help screen
1 parent ee23f34 commit 925c6740837928f6d332c478e283823bb968a1db
@tundra tundra authored on 27 Oct 2016
Showing 1 changed file
View
44
trm.sh
TESTING="Test Mode ..."
 
mkdir -p $GRAVEYARD
 
 
#####
# Display usage information
#####
 
trm_usage()
{
echo "usage: trm.sh -cehistvx -g graveyard [file|dir] ..."
echo " where,"
echo " -c copy targets to graveyard, don't remove them"
echo " -e empty the current graveyard (permanent removal"
echo " -h display this help screen"
echo " -g graveyard use named graveyard instead of default"
echo " -i interactive removal/copy"
echo " -s don't generate serial number suffixes"
echo " -t test mode, just show what would be done"
echo " -v verbose mode - noisy output"
echo " -x execute, overrides previous -t"
 
}
 
 
#####
# This function is called at the bottom of this file or it can
# be embedded in a shell startup script.
#####
 
trm()
{
 
# 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
OPTLIST='ceg:histvx' # 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
SERIALNO="Yes" # Generate serial numbers
OPERATOR="mv" # Can be overriden with -c option
SERIALNO="Yes" # Generate serial numbers
TESTMODE=""
USAGE=""
VERBOSE=""
 
while getopts ${OPTLIST} opt
do
OPERATOR="cp -pr"
;;
 
# Empty the graveyard
d)
e)
rm -rf ${VERBOSE} ${GRAVEYARD}/* ${GRAVEYARD}/.[-z]*
;;
 
# Name your own graveyard
g)
GRAVEYARD=${OPTARG}
;;
 
h)
trm_usage
return 0
;;
 
i)
INTERACTIVE="Yes"
TESTMODE=""
;;
 
*)
USAGE="Yes"
exit 1
trm_usage
return 1
;;
esac
done