diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-06-06 14:30:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-06-29 11:19:43 +0000 |
commit | 01c889bc65ec023e9911de9f14a2734e00e04883 (patch) | |
tree | 3e8b8044a6660ec4e7fe4f8f37304b0496a1f03c | |
parent | Adding initial container info command. (diff) | |
download | compute-tools-01c889bc65ec023e9911de9f14a2734e00e04883.tar.xz compute-tools-01c889bc65ec023e9911de9f14a2734e00e04883.zip |
Handling container run command aequivalent to container enter in bash-completion.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index cfa5740..d966d7a 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -81,7 +81,7 @@ _container() esac ;; - enter) + enter|run) case "${prev}" in -n|--name) opts="$(container list -s -f shell)" |