diff options
Diffstat (limited to 'completions/plague-client')
-rw-r--r-- | completions/plague-client | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/completions/plague-client b/completions/plague-client new file mode 100644 index 0000000..4e98206 --- /dev/null +++ b/completions/plague-client @@ -0,0 +1,14 @@ +# bash completion for plague-client -*- shell-script -*- + +_plague_client() +{ + local cur prev words cword + _init_completion || return + + ((cword == 1)) && + COMPREPLY=($(compgen -W 'build detail finish help is_paused kill list + list_builders pause requeue unpause update_builders' -- "$cur")) +} && + complete -F _plague_client plague-client + +# ex: filetype=sh |