Make the output of pihole -q a bit clearer. Bye Bye nifty one-liner!

This commit is contained in:
Promofaux 2016-09-06 19:16:04 +01:00
parent 6305c7e2ab
commit 19b656132d

11
pihole
View file

@ -72,7 +72,16 @@ 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)
if [[ ${count} > 0 ]]; then
echo "::: ${list} (${count} results)"
grep ${domain} ${list}
echo ""
fi
done
exit 1
}