mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 02:15:22 +00:00
23 lines
582 B
Plaintext
Executable File
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
|