pivpn/scripts/wireguard/bash-completion

20 lines
559 B
Text
Raw Normal View History

_pivpn()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
2020-10-21 21:35:29 +00:00
dashopts="-a -c -d -l -qr -r -h -u -up -bk -dis -ena"
opts="add clients debug list qrcode remove help uninstall update backup disable enable"
if [ "${#COMP_WORDS[@]}" -eq 2 ]
then
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${dashopts}" -- "${cur}") )
else
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
fi
fi
return 0
}
complete -F _pivpn pivpn