2016-10-22 19:26:00 +02:00
|
|
|
_pihole() {
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2017-03-08 13:16:40 +01:00
|
|
|
opts="admin blacklist chronometer debug disable enable flush help logging query reconfigure restartdns setupLCD status tail uninstall updateGravity updatePihole version whitelist checkout"
|
2016-04-03 00:58:10 +02:00
|
|
|
|
2016-10-22 19:26:00 +02:00
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
2016-04-03 00:58:10 +02:00
|
|
|
}
|
2016-10-22 19:26:00 +02:00
|
|
|
complete -F _pihole pihole
|