Actually pass through the argument to the function

pull/636/head
Adam Warner 8 years ago
parent 29b548f07c
commit 77135ca3c7

@ -63,7 +63,8 @@ function setupLCDFunction {
}
function queryFunc {
for list in /etc/pihole/list.*;do echo $list;grep '$@' $list;done
domain=$2
for list in /etc/pihole/list.*;do echo $list;grep ${domain} $list;done
exit 1
}
@ -122,7 +123,7 @@ case "$1" in
"-c" | "chronometer" ) chronometerFunc "$@";;
"-h" | "help" ) helpFunc;;
"-v" | "version" ) versionFunc;;
"-q" | "query" ) queryFunc;;
"-q" | "query" ) queryFunc "$@";;
"uninstall" ) uninstallFunc;;
* ) helpFunc;;
esac

Loading…
Cancel
Save