mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 14:58:08 +00:00
Make the output of pihole -q a bit clearer. Bye Bye nifty one-liner!
This commit is contained in:
parent
6305c7e2ab
commit
19b656132d
11
pihole
11
pihole
@ -72,7 +72,16 @@ function setupLCDFunction {
|
|||||||
|
|
||||||
function queryFunc {
|
function queryFunc {
|
||||||
domain=$2
|
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
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user