12 lines
322 B
Plaintext
12 lines
322 B
Plaintext
|
_pihole()
|
||
|
{
|
||
|
local cur prev opts
|
||
|
COMPREPLY=()
|
||
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||
|
opts="whitelist blacklist debug flush updateDashboard updateGravity setupLCD chronometer help"
|
||
|
|
||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||
|
return 0
|
||
|
}
|
||
|
complete -F _pihole pihole
|