diff options
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/podman | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 3616c6ca1..dce23df2b 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -2740,6 +2740,22 @@ _podman_pod_ps() { __podman_pod_ps } +_podman_pod_prune() { + local options_with_args=" + " + + local boolean_options=" + -f + -h + --help + " + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + esac +} + _podman_pod_restart() { local options_with_args=" " |