diff options
author | Leah Neukirchen <leah@vuxu.org> | 2017-08-11 13:34:06 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2017-08-11 13:34:06 +0200 |
commit | 7fd23d80baaf043c607faaf9094e97fbd0a1ff8b (patch) | |
tree | 5e3178327e3672270d9056d0ecb274cbad3f9011 /xlocate | |
parent | 59bcfada7cacf4b0cd92029023a4aaf2cf105340 (diff) | |
download | xtools-7fd23d80baaf043c607faaf9094e97fbd0a1ff8b.tar.gz xtools-7fd23d80baaf043c607faaf9094e97fbd0a1ff8b.tar.xz xtools-7fd23d80baaf043c607faaf9094e97fbd0a1ff8b.zip |
xlocate: fix option parsing v0.48
Fixes #66.
Diffstat (limited to 'xlocate')
-rwxr-xr-x | xlocate | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/xlocate b/xlocate index 2da6641..1d2d41b 100755 --- a/xlocate +++ b/xlocate @@ -45,16 +45,20 @@ xsyncgit() { git -C "$XLOCATE_GIT" fetch -u -f "$XLOCATE_REPO" master:master } -if [ "$1" = -g ]; then +case "$1" in +-g) xupdategit - exit $? -elif [ "$1" = -S ]; then + exit $?;; +-S) xsyncgit - exit $? -else + exit $?;; +-*) echo "xlocate: invalid option '$1'" 1>&2 - exit 1 -fi + exit 1;; +'') + echo "Usage: xlocate [-g | -S | PATTERN]" 1>&2 + exit 1;; +esac if [ -d "$XLOCATE_GIT" ]; then if [ -f "$XLOCATE_GIT/refs/heads/master" ]; then |