diff options
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 4d552b0a7..7b64c2a80 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1244,6 +1244,7 @@ _podman_build() { --no-cache --pull --pull-always + --pull-never --quiet -q --rm @@ -2004,7 +2005,7 @@ _podman_container_run() { return ;; --env|-e) - # we do not append a "=" here because "-e VARNAME" is legal systax, too + # we do not append a "=" here because "-e VARNAME" is legal syntax, too COMPREPLY=( $( compgen -e -- "$cur" ) ) __podman_nospace return @@ -2149,10 +2150,13 @@ _podman_rm() { local boolean_options=" --all -a + --cidfile --force -f --help -h + --ignore + -i --latest -l --storage @@ -2425,8 +2429,11 @@ _podman_stop() { local boolean_options=" --all -a + --cidfile -h --help + --ignore + -i --latest -l " @@ -2987,6 +2994,8 @@ _podman_pod_rm() { --all --help -h + --ignore + -i -f --force --latest @@ -3037,6 +3046,8 @@ _podman_pod_stop() { -a --cleanup --help + --ignore + -i -h --latest -l |