1
0
mirror of https://github.com/docker/cli.git synced 2026-01-16 20:22:36 +03:00

Move bash completion logic to new subcommand: stats

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers
2016-10-20 09:13:06 +02:00
committed by Tibor Vass
parent f58b6746d7
commit 04886bca2f

View File

@@ -1595,7 +1595,20 @@ _docker_container_start() {
}
_docker_container_stats() {
_docker_stats
case "$prev" in
--format)
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--all -a --format --help --no-stream" -- "$cur" ) )
;;
*)
__docker_complete_containers_running
;;
esac
}
_docker_container_stop() {
@@ -2913,20 +2926,7 @@ _docker_start() {
}
_docker_stats() {
case "$prev" in
--format)
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--all -a --format --help --no-stream" -- "$cur" ) )
;;
*)
__docker_complete_containers_running
;;
esac
_docker_container_stats
}
_docker_stop() {