Added support for options, by using getopts. Support for "standard"

set of options:

  -h, --help
  -v, --verbose
  --version

Move command is now only verbose if the option is selected.

Updated comments and copyright message.
This commit is contained in:
Robert Rothenberg 2011-03-17 09:55:44 +00:00
parent aa940b2f46
commit da2fd73d15

61
trash
View File

@ -1,12 +1,10 @@
#!/bin/bash #!/bin/bash
# $Id: trash 2010/11/07 17:29:43 GMT rr@dwaible $ # bashtrash - a bash script implementation of the FreeDesktop.org Trash
# Version 0.2.1
# Robert Rothenberg
# This is a bash script implementation of the FreeDesktop.org Trash
# Specification. # Specification.
# Copyright (c) 2009-2011, Robert Rothenberg <robrwo@gmail.com>
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or # the Free Software Foundation; either version 2 of the License, or
@ -17,11 +15,50 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
if [ -z "$1" ]; then version="0.3.0 \$Id: trash 2011/03/17 09:54:46 GMT rr@dwaible $"
echo "Usage: trash FILE..."
function show_usage {
cat << EOU
Usage: $0 [OPTION]... FILE...
Move files into the trash.
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-v, --verbose explain what is being done
EOU
}
# Option handling
if ! options=$(getopt -o hv -l help,verbose,version -- "$@")
then
exit 1 exit 1
fi fi
if [ $# -eq 0 ]; then
echo "Try \`$0 --help' for more information." 1>&2
exit 1
fi
set -- $options
verbose=""
while [ $# -gt 0 ]
do
case $1 in
-h|--help) show_usage ;;
-v|--verbose) verbose="-v" ;;
--version) echo "$0 $version" 1>&2;;
(--) shift; break;;
(-*) echo "$0: error - unrecognized option $1" 1>&2; exit 1;;
(*) break;;
esac
shift
done
# sed script to encode filenames # sed script to encode filenames
sedscript='s/ /%20/g sedscript='s/ /%20/g
@ -58,7 +95,6 @@ function url_encode {
echo $1 |sed -e "$sedscript" echo $1 |sed -e "$sedscript"
} }
function get_trashdir { function get_trashdir {
mounts=`awk '{ print $2 }' /proc/mounts` mounts=`awk '{ print $2 }' /proc/mounts`
base=/ base=/
@ -103,9 +139,14 @@ function get_trashdir {
for f in "$@" for f in "$@"
do do
# strip quotes added by getopts
f=${f#\'}
f=${f%\'}
# get full pathname of file # get full pathname of file
filename=$(readlink -f "$f") filename=$(readlink -f "${f}")
dir=${filename%/*} dir=${filename%/*}
trashdir=`get_trashdir "$dir"` trashdir=`get_trashdir "$dir"`
@ -149,7 +190,7 @@ Path=$canon
DeletionDate=`date +"%FT%H:%M:%S"` DeletionDate=`date +"%FT%H:%M:%S"`
END END
mv -v "$filename" "$deletedfile" mv $verbose "$filename" "$deletedfile"
done done
exit 0 exit 0