bash completion for `service ps` supports multiple services

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-07-28 15:43:34 +02:00
parent 75249123b1
commit 548758fe31
1 changed files with 1 additions and 4 deletions

View File

@ -3242,10 +3242,7 @@ _docker_service_ps() {
COMPREPLY=( $( compgen -W "--filter -f --format --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag '--filter|-f')
if [ "$cword" -eq "$counter" ]; then
__docker_complete_services
fi
;;
esac
}