Improve --only option to perform only specified test and no other lookalike test number

Before modification "--only 8.2.1" performed tests 8.2.1 and 2.1
This commit is contained in:
Charles Herlin 2018-03-15 12:03:10 +01:00 committed by Kevin Tanguy
parent d60922ab9d
commit 843ce3efc3

View File

@ -199,7 +199,7 @@ for SCRIPT in $(ls $CIS_ROOT_DIR/bin/hardening/*.sh -v); do
# --only X has been specified at least once, is this script in my list ?
SCRIPT_PREFIX=$(grep -Eo '^[0-9.]+' <<< "$(basename $SCRIPT)")
SCRIPT_PREFIX_RE=$(sed -e 's/\./\\./g' <<< "$SCRIPT_PREFIX")
if ! grep -qEw "$SCRIPT_PREFIX_RE" <<< "${TEST_LIST[@]}"; then
if ! grep -qE "(^| )$SCRIPT_PREFIX_RE" <<< "${TEST_LIST[@]}"; then
# not in the list
continue
fi