From c2b9316cec889bb17f6037beff34698de296ccd8 Mon Sep 17 00:00:00 2001 From: Grischa Zengel Date: Thu, 11 Jun 2020 02:51:15 +0200 Subject: [PATCH] bash_completion: add missing attributes There a some attributes missing which are shown in man pages: zfs list -t type A comma-separated list of types to display, where type is one of filesystem, snapshot, volume, *bookmark*, or all. For example, specifying -t snapshot displays only snapshots. zfs get -s source A comma-separated list of sources to display. Those properties coming from a source other than those in this list are ignored. Each source must be one of the following: local, default, inherited, temporary, *received*, and none. The default value is all sources. zfs get -t type A comma-separated list of types to display, where type is one of filesystem, snapshot, volume, bookmark, or all. Reviewed-by: Brian Behlendorf Signed-off-by: Grischa Zengel Closes #10418 --- contrib/bash_completion.d/zfs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/bash_completion.d/zfs b/contrib/bash_completion.d/zfs index 914db43cba1..078ba1eb256 100644 --- a/contrib/bash_completion.d/zfs +++ b/contrib/bash_completion.d/zfs @@ -209,10 +209,10 @@ __zfs_complete() COMPREPLY=($(compgen -W "" -- "$cur")) ;; -t) - __zfs_complete_multiple_options "filesystem volume snapshot all" "$cur" + __zfs_complete_multiple_options "filesystem volume snapshot bookmark all" "$cur" ;; -s) - __zfs_complete_multiple_options "local default inherited temporary none" "$cur" + __zfs_complete_multiple_options "local default inherited temporary received none" "$cur" ;; -o) __zfs_complete_multiple_options "name property value source received all" "$cur" @@ -242,7 +242,7 @@ __zfs_complete() COMPREPLY=($(compgen -W "" -- "$cur")) ;; -t) - __zfs_complete_multiple_options "filesystem volume snapshot all" "$cur" + __zfs_complete_multiple_options "filesystem volume snapshot bookmark all" "$cur" ;; -o) __zfs_complete_multiple_options "$(__zfs_get_properties)" "$cur"