Browse code

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

Signed-off-by: Harald Albers <github@albersweb.de>

Harald Albers authored on 2016/01/24 22:50:33
Showing 1 changed files
... ...
@@ -1442,7 +1442,7 @@ _docker_ps() {
1442 1442
 			return
1443 1443
 			;;
1444 1444
 		*status=*)
1445
-			COMPREPLY=( $( compgen -W "exited paused restarting running" -- "${cur#=}" ) )
1445
+			COMPREPLY=( $( compgen -W "created dead exited paused restarting running" -- "${cur#=}" ) )
1446 1446
 			return
1447 1447
 			;;
1448 1448
 	esac