yandex-tank/data/yandex-tank.completion
2016-01-18 14:42:30 +03:00

23 lines
582 B
Plaintext
Executable File

have yandex-tank &&
_yandex_tank()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ ${cur} == -* ]] ; then
opts=`yandex-tank --bash-switches-list`
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
if [[ ${prev} == -o ]] ; then
opts=`yandex-tank --bash-options-prev="${prev}" --bash-options-cur="${cur}"`
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
COMPREPLY=()
} &&
complete -o default -F _yandex_tank yandex-tank