diff options
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 7cec8bf80..3382b6c5a 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -888,6 +888,7 @@ _podman_container() { create diff exec + exists export inspect kill @@ -896,6 +897,7 @@ _podman_container() { mount pause port + prune refresh restart restore @@ -1227,11 +1229,13 @@ _podman_image() { " subcommands=" build + exists history import inspect load ls + prune pull push rm @@ -2054,6 +2058,7 @@ _podman_ps() { --quiet -q --size -s --namespace --ns + --sync " _complete_ "$options_with_args" "$boolean_options" } @@ -2244,6 +2249,26 @@ _podman_container_runlabel() { esac } +_podman_images_prune() { + local options_with_args=" + " + + local boolean_options=" + -h + --help + " +} + +_podman_container_prune() { + local options_with_args=" + " + + local boolean_options=" + -h + --help + " +} + _podman_container_exists() { local options_with_args=" " |