aboutsummaryrefslogtreecommitdiff
path: root/bin/uninclude
diff options
context:
space:
mode:
Diffstat (limited to 'bin/uninclude')
-rwxr-xr-xbin/uninclude10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/uninclude b/bin/uninclude
index 812f51b..ce8b633 100755
--- a/bin/uninclude
+++ b/bin/uninclude
@@ -43,15 +43,15 @@ help() {
for flag in "$@"; do
case "$flag" in
- --)
+ (--)
break
;;
- --help)
+ (--help)
usage
help
exit
;;
- *)
+ (*)
;;
esac
done
@@ -61,12 +61,12 @@ while getopts 'E:h' flag; do
E)
REGEXP="$OPTARG"
;;
- h)
+ (h)
usage
help
exit
;;
- *)
+ (*)
usage >&2
exit 2
;;