mirror of
https://github.com/pi-hole/pi-hole
synced 2024-11-15 20:49:01 +00:00
Don't count commented out regex lines
Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
parent
b2a36f71a0
commit
72be7ad5f0
@ -465,7 +465,7 @@ gravity_ShowBlockCount() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f "${regexFile}" ]]; then
|
if [[ -f "${regexFile}" ]]; then
|
||||||
num=$(grep -c "^" "${regexFile}")
|
num=$(grep -c "^(?!#)" "${regexFile}")
|
||||||
echo -e " ${INFO} Number of regex filters: ${num}"
|
echo -e " ${INFO} Number of regex filters: ${num}"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user