diff options
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 24205d7..1637b5e 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -264,6 +264,22 @@ _container() esac ;; + rebuild|rb) + case "${prev}" in + -n|--name) + opts="$(container list -f shell)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + + *) + opts="-n --name -f --force -v --verbose" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + esac + ;; + restart|rt) case "${prev}" in -n|--name) |