This adds bash completion for the enw ndctl inject-smart command. non-option arguments are completed with dimms, and new options requiring data are marked as such.
Cc: Dan Williams <[email protected]> Signed-off-by: Vishal Verma <[email protected]> --- contrib/ndctl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/ndctl b/contrib/ndctl index eeda1c4..9a14383 100755 --- a/contrib/ndctl +++ b/contrib/ndctl @@ -91,7 +91,7 @@ __ndctlcomp() COMPREPLY=( $( compgen -W "$1" -- "$2" ) ) for cword in "${COMPREPLY[@]}"; do - if [[ "$cword" == @(--bus|--region|--type|--mode|--size|--dimm|--reconfig|--uuid|--name|--sector-size|--map|--namespace|--input|--output|--label-version|--align|--block|--count|--firmware) ]]; then + if [[ "$cword" == @(--bus|--region|--type|--mode|--size|--dimm|--reconfig|--uuid|--name|--sector-size|--map|--namespace|--input|--output|--label-version|--align|--block|--count|--firmware|--alarm-control|--media-temperature|--ctrl-temperature|--spares) ]]; then COMPREPLY[$i]="${cword}=" else COMPREPLY[$i]="${cword} " @@ -262,6 +262,9 @@ __ndctl_comp_non_option_args() inject-error) opts="$(__ndctl_get_ns -i)" ;; + inject-smart) + opts="$(__ndctl_get_dimms -i)" + ;; *) return ;; -- 2.14.3 _______________________________________________ Linux-nvdimm mailing list [email protected] https://lists.01.org/mailman/listinfo/linux-nvdimm
