mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-24 08:10:14 +00:00
Mcat12 requests. Added bash-completion support
This commit is contained in:
parent
767b72fbfa
commit
d47fbbbe96
4 changed files with 35 additions and 29 deletions
12
advanced/bash-completion/pihole
Normal file
12
advanced/bash-completion/pihole
Normal file
|
@ -0,0 +1,12 @@
|
|||
_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
|
Loading…
Add table
Add a link
Reference in a new issue