diff options
author | vanhauser-thc <vh@thc.org> | 2021-05-26 16:01:11 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-05-26 16:01:11 +0200 |
commit | 6bd3c26cfb3a4e2cd01710025144ce9f1119fc2e (patch) | |
tree | b0c020c62fc58463a8e6353c8d6c374e8e3ae14a | |
parent | a5e551ab917cef708363483070eb62c55897cf3b (diff) | |
download | afl++-6bd3c26cfb3a4e2cd01710025144ce9f1119fc2e.tar.gz |
fix afl-whatsup help output
-rwxr-xr-x | afl-whatsup | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/afl-whatsup b/afl-whatsup index be259829..9c2564c6 100755 --- a/afl-whatsup +++ b/afl-whatsup @@ -21,11 +21,11 @@ echo "$0 status check tool for afl-fuzz by Michal Zalewski" echo test "$1" = "-h" -o "$1" = "-hh" && { - echo "$0 [-s] [-d] output_directory" + echo "Usage: $0 [-s] [-d] afl_output_directory" echo echo Options: - echo -s - skip details and output summary results only - echo -d - include dead fuzzer stats + echo " -s - skip details and output summary results only" + echo " -d - include dead fuzzer stats" echo exit 1 } @@ -51,10 +51,11 @@ DIR="$1" if [ "$DIR" = "" ]; then - echo "Usage: $0 [-s] [-d] afl_sync_dir" 1>&2 + echo "Usage: $0 [-s] [-d] afl_output_directory" 1>&2 echo 1>&2 - echo "The -s option causes the tool to skip all the per-fuzzer trivia and show" 1>&2 - echo "just the summary results. See docs/parallel_fuzzing.md for additional tips." 1>&2 + echo Options: 1>&2 + echo " -s - skip details and output summary results only" 1>&2 + echo " -d - include dead fuzzer stats" 1>&2 echo 1>&2 exit 1 |