Fixed problems with getopt on filenames with spaces by using bash's
builtin getopts. The (minor) downside is that it only accepts single-letter options, although the options can be combined.
This commit is contained in:
parent
9185ec465a
commit
247de2d327
10
README
10
README
@ -24,11 +24,11 @@ Move files into the trash.
|
|||||||
|
|
||||||
Options:
|
Options:
|
||||||
--version show program's version number and exit
|
--version show program's version number and exit
|
||||||
-h, --help show this help message and exit
|
-h show this help message and exit
|
||||||
-v, --verbose explain what is being done
|
-v explain what is being done
|
||||||
-i, --interactive prompt before moving every file
|
-i prompt before moving every file
|
||||||
-r, -R, --recursive ignored (for compatability with rm)
|
-r, -R ignored (for compatability with rm)
|
||||||
-f, --force ignore non-existent files, never prompt
|
-f ignore non-existent files, never prompt
|
||||||
|
|
||||||
Copyright (c) 2009-2011, Robert Rothenberg <robrwo@gmail.com>
|
Copyright (c) 2009-2011, Robert Rothenberg <robrwo@gmail.com>
|
||||||
|
|
||||||
|
116
trash
116
trash
@ -15,7 +15,7 @@
|
|||||||
# 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.
|
||||||
|
|
||||||
version="0.3.11 \$Id: trash 2011/06/22 07:23:55 BST rr@newfie $"
|
version="0.4.0"
|
||||||
|
|
||||||
progname=`basename $0`
|
progname=`basename $0`
|
||||||
|
|
||||||
@ -27,65 +27,19 @@ Move files into the trash.
|
|||||||
|
|
||||||
Options:
|
Options:
|
||||||
--version show program's version number and exit
|
--version show program's version number and exit
|
||||||
-h, --help show this help message and exit
|
-h show this help message and exit
|
||||||
-v, --verbose explain what is being done
|
-v explain what is being done
|
||||||
-i, --interactive prompt before moving every file
|
-i prompt before moving every file
|
||||||
-r, -R, --recursive ignored (for compatability with rm)
|
-r, -R ignored (for compatability with rm)
|
||||||
-f, --force ignore non-existent files, never prompt
|
-f ignore non-existent files, never prompt
|
||||||
EOU
|
EOU
|
||||||
}
|
}
|
||||||
|
|
||||||
function try_help {
|
function try_help {
|
||||||
echo "Try \`${progname} --help' for more information." 1>&2
|
echo "Try \`${progname} -h' for more information." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# Option handling
|
|
||||||
|
|
||||||
if ! options=$(getopt -o hvirRf -l "help,verbose,interactive::,version,recursive,force" -n "${progname}" -- "$@")
|
|
||||||
then
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
|
||||||
try_help
|
|
||||||
fi
|
|
||||||
|
|
||||||
#set -- "$options"
|
|
||||||
|
|
||||||
verbose=0
|
|
||||||
interactive=never
|
|
||||||
|
|
||||||
function strip_quotes {
|
|
||||||
x="$1"
|
|
||||||
x="${x#\'}"
|
|
||||||
x="${x%\'}"
|
|
||||||
echo "${x}"
|
|
||||||
}
|
|
||||||
|
|
||||||
while [ $# -gt 0 ]
|
|
||||||
do
|
|
||||||
case $1 in
|
|
||||||
-h|--help) show_usage ; exit 1;;
|
|
||||||
-v|--verbose) verbose=1 ;;
|
|
||||||
-i) interactive=always ;;
|
|
||||||
--interactive) shift ;
|
|
||||||
arg=`strip_quotes "$1"`
|
|
||||||
if [ -z "$arg" ]; then
|
|
||||||
arg=always
|
|
||||||
fi
|
|
||||||
interactive=$arg
|
|
||||||
;;
|
|
||||||
--version) echo "${progname} $version" 1>&2 ;;
|
|
||||||
-r|-R|--recursive) ;;
|
|
||||||
-f|--force) interactive=force ;;
|
|
||||||
(--) shift; break;;
|
|
||||||
(-*) echo "${progname}: invalid option -- '$1'" 1>&2 ; try_help ; exit 1 ;;
|
|
||||||
(*) break;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
# sed script to encode filenames
|
# sed script to encode filenames
|
||||||
|
|
||||||
sedscript='s/ /%20/g
|
sedscript='s/ /%20/g
|
||||||
@ -164,14 +118,6 @@ function get_trashdir {
|
|||||||
echo $trashdir
|
echo $trashdir
|
||||||
}
|
}
|
||||||
|
|
||||||
# configure options
|
|
||||||
|
|
||||||
mv_opts=""
|
|
||||||
|
|
||||||
if [ $verbose != 0 ]; then
|
|
||||||
mv_opts="${mv_opts} -v"
|
|
||||||
fi
|
|
||||||
|
|
||||||
function can_trash {
|
function can_trash {
|
||||||
filename="$1"
|
filename="$1"
|
||||||
|
|
||||||
@ -252,6 +198,12 @@ Path=$canon
|
|||||||
DeletionDate=`date +"%FT%H:%M:%S"`
|
DeletionDate=`date +"%FT%H:%M:%S"`
|
||||||
END
|
END
|
||||||
|
|
||||||
|
if [ $verbose != 0 ]; then
|
||||||
|
mv_opts="-v"
|
||||||
|
else
|
||||||
|
mv_opts=
|
||||||
|
fi
|
||||||
|
|
||||||
# Note that the trashinfo file will have the ownership and
|
# Note that the trashinfo file will have the ownership and
|
||||||
# permissions of the person who deleted the file, and not
|
# permissions of the person who deleted the file, and not
|
||||||
# necessarily of the original file.
|
# necessarily of the original file.
|
||||||
@ -264,11 +216,45 @@ END
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
for f in "$@"
|
# Option handling
|
||||||
do
|
|
||||||
# strip quotes added by getopts
|
|
||||||
|
|
||||||
f=`strip_quotes "${f}"`
|
function strip_quotes {
|
||||||
|
x="$1"
|
||||||
|
x="${x#\'}"
|
||||||
|
x="${x%\'}"
|
||||||
|
echo "${x}"
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
try_help
|
||||||
|
fi
|
||||||
|
|
||||||
|
verbose=0
|
||||||
|
interactive=never
|
||||||
|
filename=
|
||||||
|
|
||||||
|
while getopts hvirRf arg; do
|
||||||
|
case $arg in
|
||||||
|
h) show_usage;
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
i) interactive=always
|
||||||
|
;;
|
||||||
|
v) verbose=1
|
||||||
|
;;
|
||||||
|
r|R)
|
||||||
|
;;
|
||||||
|
f) interactive=force
|
||||||
|
;;
|
||||||
|
[?]) try_help
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
shift $(( OPTIND - 1))
|
||||||
|
|
||||||
|
for f in "$@"; do
|
||||||
|
|
||||||
# get full pathname of file
|
# get full pathname of file
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user