We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8564a commit 47a8902Copy full SHA for 47a8902
c
@@ -58,6 +58,11 @@ while [ $# -gt 0 ]; do
58
args=("${args[@]}" "$@")
59
break
60
;;
61
+ -*)
62
+ echo "${PROG}: unrecognized option '$1'" 1>&2
63
+ echo 1>&2
64
+ usage 2;
65
+ ;;
66
*)
67
# if not option, treat all follow args as command
68
find-in-jars
@@ -88,6 +88,11 @@ while [ $# -gt 0 ]; do
88
89
90
91
92
93
94
95
96
97
args=("${args[@]}" "$1")
98
shift
0 commit comments