summaryrefslogtreecommitdiff
path: root/tools/nova.bash_completion
blob: 060bf1f7d23ae0246a6d0cc5522a112f6742fa84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
_cinder()
{
    local cur prev opts
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"

    opts="$(cinder bash_completion)"

    COMPLETION_CACHE=~/.cinderclient/*/*-cache
    opts+=" "$(cat $COMPLETION_CACHE 2> /dev/null | tr '\n' ' ')

    COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
}
complete -F _cinder cinder