diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-12-23 11:37:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 11:37:26 -0800 |
commit | 8fe30505acc1c58ab05771f2095ed3fd038c6df4 (patch) | |
tree | 3ca5ccc95628815f68aca01819e2a21809e18a73 /completions/bash/podman | |
parent | eb982193c5bb949ec75308e91d5698aebe4f9429 (diff) | |
parent | a22f00d4c58fdaba479405b38bac1508ef889c7e (diff) | |
download | podman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.tar.gz podman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.tar.bz2 podman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.zip |
Merge pull request #2044 from rhatdan/list
Allow alias for list, ls, ps to work
Diffstat (limited to 'completions/bash/podman')
-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=" " |