blob: 2bb27557b9afb820909cd628748fea273b71be3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# avctrl completion -*- shell-script -*-
_comp_cmd_avctrl()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen -- -W '--help --quiet'
else
local REPLY
_comp_count_args
if ((REPLY == 1)); then
_comp_compgen -- -W 'discover switch'
fi
fi
} &&
complete -F _comp_cmd_avctrl avctrl
# ex: filetype=sh
|