123456789101112131415161718192021222324252627 |
- # bash completion for tss2_getdescription -*- shell-script -*-
- _tss2_getdescription()
- {
- local cur prev words cword split
- _init_completion -s || return
- case $prev in
- -!(-*)h | --help)
- COMPREPLY=( $(compgen -W "man no-man" -- "$cur") )
- return;;
- -!(-*)[o] | --description)
- _filedir
- if [ x"$cur" = x ]; then COMPREPLY+=( '-' ); fi
- return;;
- -!(-*)[p] | --path)
- return;;
- esac
- $split && return
- COMPREPLY=( $(compgen -W "-h --help -v --version -f --force --path= -p
- --description= -o " -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
- } &&
- complete -F _tss2_getdescription tss2_getdescription
- # ex: filetype=sh
|