From e0960c5379718e312d70dbbe1f844d14b093cbfa Mon Sep 17 00:00:00 2001 From: Dirk Date: Mon, 12 Jun 2017 19:07:58 +0200 Subject: [PATCH] --parallel is now shortcut for --mode=parallel --- testssl.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 7520237..da0cbbc 100755 --- a/testssl.sh +++ b/testssl.sh @@ -11139,7 +11139,7 @@ help() { --file Mass testing option: Reads command lines from , one line per instance. Comments via # allowed, EOF signals end of . Implicitly turns on "--warnings batch". Alternatively: nmap output in greppable format (-oG) is also allowed (1x same port per line) - --mode Mass testing to be done serial (default) or parallel + --mode Mass testing to be done serial (default) or parallel (--parallel is shortcut for the latter) single check as ("$PROG_NAME URI" does everything except -E): -e, --each-cipher checks each local cipher remotely @@ -12945,6 +12945,9 @@ parse_cmd_line() { help 1 esac ;; + --parallel) + MASS_TESTING_MODE=parallel + ;; --warnings|--warnings=*) WARNINGS=$(parse_opt_equal_sign "$1" "$2") [[ $? -eq 0 ]] && shift