bash completion for `docker ps --filter status=dead`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-01-24 05:50:33 -08:00
parent 7aafa76662
commit 0f654bb5eb
1 changed files with 1 additions and 1 deletions

View File

@ -1425,7 +1425,7 @@ _docker_ps() {
return return
;; ;;
*status=*) *status=*)
COMPREPLY=( $( compgen -W "exited paused restarting running" -- "${cur#=}" ) ) COMPREPLY=( $( compgen -W "created dead exited paused restarting running" -- "${cur#=}" ) )
return return
;; ;;
esac esac