default to test mode, add -x for execution
1 parent a6b769b commit 1a9e41ceb6dcc23f74171e877311bfcf5f6957fc
@tundra tundra authored on 26 Oct 2016
Showing 2 changed files
View
1
■■■■
TODO.txt
- Make test mode default and provide execute as an option
- Handle filenames and destinations with spaces in them
- Make serial number processing consistent across BSD and Linux
- Make serial number postfix consistent across dirs and files
- Option to disable serial numbers
View
18
trm.sh
# 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}