aboutsummaryrefslogtreecommitdiff
path: root/afl-whatsup
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-05-26 16:01:11 +0200
committervanhauser-thc <vh@thc.org>2021-05-26 16:01:11 +0200
commit6bd3c26cfb3a4e2cd01710025144ce9f1119fc2e (patch)
treeb0c020c62fc58463a8e6353c8d6c374e8e3ae14a /afl-whatsup
parenta5e551ab917cef708363483070eb62c55897cf3b (diff)
downloadAFLplusplus-6bd3c26cfb3a4e2cd01710025144ce9f1119fc2e.tar.gz
fix afl-whatsup help output
Diffstat (limited to 'afl-whatsup')
-rwxr-xr-xafl-whatsup13
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