1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-10-19 06:19:26 +00:00
pi-hole/advanced/bash-completion/pihole

12 lines
334 B
Plaintext
Raw Normal View History

2016-10-22 17:26:00 +00:00
_pihole() {
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="blacklist chronometer debug flush help query reconfigure setupLCD uninstall updateGravity updatePihole version whitelist"
2016-10-22 17:26:00 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}
2016-10-22 17:26:00 +00:00
complete -F _pihole pihole