75 lines
2.2 KiB
Bash
75 lines
2.2 KiB
Bash
_sqv() {
|
|||
|
|
local i cur prev opts cmd
|
||
|
|
COMPREPLY=()
|
||
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||
|
|
cmd=""
|
||
|
|
opts=""
|
||
|
|
|
||
|
|
for i in ${COMP_WORDS[@]}
|
||
|
|
do
|
||
|
|
case "${cmd},${i}" in
|
||
|
|
",$1")
|
||
|
|
cmd="sqv"
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
done
|
||
|
|
|
||
|
|
case "${cmd}" in
|
||
|
|
sqv)
|
||
|
|
opts="-n -v -h -V --output --signature-file --message --cleartext --keyring --not-after --not-before --signatures --verbose --policy-as-of --help --version <FILE> [DATA-FILE]"
|
||
|
|
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
|
||
|
|
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
|
||
|
|
return 0
|
||
|
|
fi
|
||
|
|
case "${prev}" in
|
||
|
|
--output)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--signature-file)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--keyring)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--not-after)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--not-before)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--signatures)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
-n)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
--policy-as-of)
|
||
|
|
COMPREPLY=($(compgen -f "${cur}"))
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
COMPREPLY=()
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
|
||
|
|
return 0
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
}
|
||
|
|
|
||
|
|
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
|
||
|
|
complete -F _sqv -o nosort -o bashdefault -o default sqv
|
||
|
|
else
|
||
|
|
complete -F _sqv -o bashdefault -o default sqv
|
||
|
|
fi
|