Add bash completion for system df --format
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
committed by
Tibor Vass
parent
852a861b8e
commit
3e646fed80
@ -4173,9 +4173,15 @@ _docker_system() {
|
||||
}
|
||||
|
||||
_docker_system_df() {
|
||||
case "$prev" in
|
||||
--format)
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--help --verbose -v" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -W "--format --help --verbose -v" -- "$cur" ) )
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user