Use alternative logic for counting regex file entries, skipping commented out lines

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2018-08-07 18:02:01 +02:00
parent f2b820079a
commit 5bf90cb77d
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

View file

@ -464,7 +464,7 @@ gravity_ShowBlockCount() {
fi
if [[ -f "${regexFile}" ]]; then
num=$(grep -c "^(?!#)" "${regexFile}")
num=$(grep -c "^[^#]" "${regexFile}")
echo -e " ${INFO} Number of regex filters: ${num}"
fi
}