Add bash completion for node ls --format
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
9b2ac77f64
commit
ef77f002e7
1 changed files with 4 additions and 1 deletions
|
@ -3472,11 +3472,14 @@ _docker_node_ls() {
|
|||
__docker_nospace
|
||||
return
|
||||
;;
|
||||
--format)
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--filter -f --help --quiet -q" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -W "--filter -f --format --help --quiet -q" -- "$cur" ) )
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue