add support for $TRM environment variable
1 parent b2515f3 commit 0ca70e4b715c309e8288591b30b3b50d87656df7
@tundra tundra authored on 27 Oct 2016
Showing 2 changed files
View
4
TODO.txt
- Add -h help and usage screen
 
Doc Notes
---------
 
- Can be run as a freestanding program or loaded into
 
- Note differences between how serial numbers are appended
on directories vs. files.
 
- $TRM environment variable
View
18
trm.sh
INTERPROMPT="Do You Want To Remove(Copy):"
TESTING="Test Mode ..."
 
mkdir -p $GRAVEYARD
 
 
#####
# Display usage information
#####
# This function is called at the bottom of this file or it can
# be embedded in a shell startup script.
#####
 
# Pick up the environment variable settings if any, and go
 
trm()
{
trm_go $TRM "$@"
}
 
 
trm_go()
{
 
# Parse command line args
 
;;
esac
done
 
# Process rest of command line arguments
 
shift $((OPTIND-1))
 
# Notify if in test mode
 
if [ -n "${TESTMODE}" ]
if [ -n "${TESTMODE}" ] && [ $# -gt 0 ]
then
echo ${TESTMODE}
fi
 
# Process arguments
 
shift $((OPTIND-1))
while [ $# -gt 0 ]
do
 
# Symlinks require special care