2016-04-03 00:58:10 +02:00
|
|
|
_pihole()
|
|
|
|
{
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2016-04-03 02:45:44 +02:00
|
|
|
opts="whitelist blacklist debug flush updateDashboard updateGravity setupLCD chronometer uninstall help"
|
2016-04-03 00:58:10 +02:00
|
|
|
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
complete -F _pihole pihole
|