From db8a8c0d96ae03bbdb8d23c51eddc5e53412535f Mon Sep 17 00:00:00 2001 From: Cheng-Li Jerry Ma Date: Thu, 8 Nov 2018 14:06:33 -0700 Subject: [PATCH] Fix -e option always skipping check_1, check_2, check_3 and ... this also caused the output json to be malformed without proper grouping/nesting Signed-off-by: Cheng-Li Jerry Ma --- docker-bench-security.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-bench-security.sh b/docker-bench-security.sh index 43d5846..4a4a4ff 100755 --- a/docker-bench-security.sh +++ b/docker-bench-security.sh @@ -126,7 +126,7 @@ main () { cis elif [ -z "$check" ] && [ "$checkexclude" ]; then checkexcluded="$(echo ",$checkexclude" | sed -e 's/^/\^/g' -e 's/,/\$|/g' -e 's/$/\$/g')" - grep 'check_[0-9]_' functions_lib.sh | grep -vE "\'$checkexcluded\'" | while read -r c; do + grep 'check_[0-9]' functions_lib.sh | grep -vE "\'$checkexcluded\'" | while read -r c; do "$c" done else