diff options
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index b1a19f255..f8086220e 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1413,6 +1413,18 @@ _podman_pause() { _complete_ "$options_with_args" "$boolean_options" } +_podman_port() { + local options_with_args=" + --help -h + " + local boolean_options=" + --all + -a + -l + --latest" + _complete_ "$options_with_args" "$boolean_options" +} + _podman_ps() { local options_with_args=" --filter -f @@ -1566,6 +1578,7 @@ _podman_podman() { logs mount pause + port ps pull push |