diff options
| author | vanhauser-thc <vh@thc.org> | 2023-11-03 11:19:14 +0100 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2023-11-03 11:19:14 +0100 |
| commit | 2230f88887e3e8d1793fdb98f9cd12d3449ba791 (patch) | |
| tree | 618e21a561f19762a45c9a551996600406559644 /afl-system-config | |
| parent | 7eafe22d6b31120055c5bf2ef0d3074538513c6c (diff) | |
| download | afl++-2230f88887e3e8d1793fdb98f9cd12d3449ba791.tar.gz | |
add --help/--version/...
Diffstat (limited to 'afl-system-config')
| -rwxr-xr-x | afl-system-config | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/afl-system-config b/afl-system-config index e64857eb..c633e4e8 100755 --- a/afl-system-config +++ b/afl-system-config @@ -1,5 +1,5 @@ #!/bin/sh -test "$1" = "-h" -o "$1" = "-hh" && { +test "$1" = "-h" -o "$1" = "-hh" -o "$1" = "--help" && { echo 'afl-system-config by Marc Heuse <mh@mh-sec.de>' echo echo $0 @@ -13,6 +13,10 @@ test "$1" = "-h" -o "$1" = "-hh" && { echo configuration options. exit 0 } +if [ $# -ne 0 ]; then + echo "ERROR: Unknown option(s): $@" + exit 1 +fi DONE= PLATFORM=`uname -s` |
