Merge pull request #636 from pi-hole/QueryCommand

Query command
This commit is contained in:
Adam Warner 2016-08-30 19:17:50 +01:00 committed by GitHub
commit 921278c5ea
1 changed files with 8 additions and 0 deletions

8
pihole
View File

@ -62,6 +62,12 @@ function setupLCDFunction {
exit 1
}
function queryFunc {
domain=$2
for list in /etc/pihole/list.*;do echo $list;grep ${domain} $list;done
exit 1
}
function chronometerFunc {
shift
$SUDO /opt/pihole/chronometer.sh "$@"
@ -96,6 +102,7 @@ function helpFunc {
echo "::: -c, chronometer Calculates stats and displays to an LCD"
echo "::: -h, help Show this help dialog"
echo "::: -v, version Show current versions"
echo "::: -q, query Query the adlists for a specific domain"
echo "::: uninstall Uninstall Pi-Hole from your system :(!"
exit 1
}
@ -116,6 +123,7 @@ case "$1" in
"-c" | "chronometer" ) chronometerFunc "$@";;
"-h" | "help" ) helpFunc;;
"-v" | "version" ) versionFunc;;
"-q" | "query" ) queryFunc "$@";;
"uninstall" ) uninstallFunc;;
* ) helpFunc;;
esac