Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-09-19 15:34:06 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-09-19 15:34:06 +0300
commitc0f9c0ab848f21cd66e7097acc3069afba4f17d1 (patch)
treec2623310d2c68d0b28447a7f479ba4b78580f7d2 /include/helper_show
parentf389cc5d9916a989f0675c2cdd58943fe2592360 (diff)
Style and log improvements
Diffstat (limited to 'include/helper_show')
-rw-r--r--include/helper_show2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/helper_show b/include/helper_show
index ec5e7236..923f4496 100644
--- a/include/helper_show
+++ b/include/helper_show
@@ -423,7 +423,7 @@ if [ $# -gt 0 ]; then
if [ -z "${SKIP_TESTS}" ]; then
${ECHOCMD} " Profile: ${GREEN}Yes${NORMAL} (not configured)"
else
- FIND=$(echo ${SKIP_TESTS} | egrep "${TEST}")
+ FIND=$(echo ${SKIP_TESTS} | grep -E "${TEST}")
if [ -z "${FIND}" ]; then
${ECHOCMD} " Profile: ${GREEN}Yes${NORMAL} (test not marked to be skipped)"
else