Merge pull request #665 from pi-hole/FleshOutPiholeQ

Make the output of pihole -q a bit clearer. Bye Bye nifty one-liner!
This commit is contained in:
Adam Warner 2016-09-06 19:25:03 +01:00 committed by GitHub
commit 162a6b8b5c

10
pihole
View file

@ -72,7 +72,15 @@ function setupLCDFunction {
function queryFunc {
domain=$2
for list in /etc/pihole/list.*;do echo $list;grep ${domain} $list;done
for list in /etc/pihole/list.*
do
count=$(grep ${domain} $list | wc -l)
echo "::: ${list} (${count} results)"
if [[ ${count} > 0 ]]; then
grep ${domain} ${list}
fi
echo ""
done
exit 1
}