| |
---|
| | { |
---|
| | |
---|
| | # 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) |
---|
| |
---|
| | |