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

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/2334/head
DL6ER 6 years ago
parent f2b820079a
commit 5bf90cb77d
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -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
}

Loading…
Cancel
Save