X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/e2a2a2eb81844b3b79ef869ef837f17d0fe037af..c8fcde472922e4ee664d904e0bf1a583f1d5040d:/doc/examples/bash_completion.in?ds=inline diff --git a/doc/examples/bash_completion.in b/doc/examples/bash_completion.in index 7e43ed8..09fe0ea 100644 --- a/doc/examples/bash_completion.in +++ b/doc/examples/bash_completion.in @@ -106,10 +106,16 @@ _gnt_cluster() # complete arguments to the command case "$prev" in "queue") - COMPREPLY=( $(compgen -W "drain undrain info" -- ${cur}) ) - ;; - *) - ;; + COMPREPLY=( $(compgen -W "drain undrain info" -- ${cur}) ) + ;; + "copyfile") + COMPREPLY=( $(compgen -f -- ${cur}) ) + ;; + "command") + COMPREPLY=( $(compgen -c -- ${cur}) ) + ;; + *) + ;; esac esac