aboutsummaryrefslogtreecommitdiff
path: root/bin/80
diff options
context:
space:
mode:
Diffstat (limited to 'bin/80')
-rwxr-xr-xbin/8010
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/80 b/bin/80
index 31939cd..9cc8e55 100755
--- a/bin/80
+++ b/bin/80
@@ -39,27 +39,27 @@ help() {
for flag in "$@"; do
case "$flag" in
- --)
+ (--)
break
;;
- --help)
+ (--help)
usage
help
exit
;;
- *)
+ (*)
;;
esac
done
while getopts 'h' flag; do
case "$flag" in
- h)
+ (h)
usage
help
exit
;;
- *)
+ (*)
usage >&2
exit 2
;;