mirror of
https://github.com/pi-hole/pi-hole
synced 2025-01-03 04:30:55 +00:00
No need for pipe here
This commit is contained in:
parent
f98de3d5db
commit
eb63e75379
2
pihole
2
pihole
@ -70,7 +70,7 @@ setupLCDFunction() {
|
|||||||
queryFunc() {
|
queryFunc() {
|
||||||
domain="${2}"
|
domain="${2}"
|
||||||
for list in /etc/pihole/list.*; do
|
for list in /etc/pihole/list.*; do
|
||||||
count=$(grep ${domain} $list | wc -l)
|
count=$(grep -c ${domain} $list)
|
||||||
echo "::: ${list} (${count} results)"
|
echo "::: ${list} (${count} results)"
|
||||||
if [[ ${count} > 0 ]]; then
|
if [[ ${count} > 0 ]]; then
|
||||||
grep ${domain} ${list}
|
grep ${domain} ${list}
|
||||||
|
Loading…
Reference in New Issue
Block a user