diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-22 07:28:21 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-23 09:38:57 -0500 |
commit | a22f00d4c58fdaba479405b38bac1508ef889c7e (patch) | |
tree | 80858474bac3f9103546ed334ac0509aff38885d /completions/bash | |
parent | 792f10988ed2badcce9a11a880303614412b9a00 (diff) | |
download | podman-a22f00d4c58fdaba479405b38bac1508ef889c7e.tar.gz podman-a22f00d4c58fdaba479405b38bac1508ef889c7e.tar.bz2 podman-a22f00d4c58fdaba479405b38bac1508ef889c7e.zip |
Allow alias for list, ls, ps to work
Allow multiple alias for listing containers and images.
Also fix documentation for umount and unmount
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/podman | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 2ce70a1f5..a85574d10 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -784,6 +784,10 @@ _podman_container_kill() { _podman_kill } +_podman_container_list() { + _podman_ls +} + _podman_container_ls() { _podman_ls } @@ -804,6 +808,10 @@ _podman_container_port() { _podman_port } +_podman_container_ps() { + _podman_ls +} + _podman_container_refresh() { local options_with_args=" " |