aboutsummaryrefslogtreecommitdiff
path: root/bin/e
diff options
context:
space:
mode:
Diffstat (limited to 'bin/e')
-rwxr-xr-xbin/e10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/e b/bin/e
index 3f8e93d..67d2d52 100755
--- a/bin/e
+++ b/bin/e
@@ -40,27 +40,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
;;