Merge pull request #1024 from pi-hole/fix/grep_case_insensitive

Make grep case insensitive
This commit is contained in:
DL6ER 2016-12-23 17:07:08 +01:00 committed by GitHub
commit eb13d846ef

4
pihole
View file

@ -72,9 +72,9 @@ scanList(){
list="${2}" list="${2}"
method="${3}" method="${3}"
if [[ ${method} == "-exact" ]] ; then if [[ ${method} == "-exact" ]] ; then
grep -E "(^|\s)${domain}($|\s)" "${list}" grep -i -E "(^|\s)${domain}($|\s)" "${list}"
else else
grep "${domain}" "${list}" grep -i "${domain}" "${list}"
fi fi
} }