From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 6AF622237A4FC for ; Thu, 8 Feb 2018 12:58:49 -0800 (PST) From: Vishal Verma Subject: [ndctl PATCH 4/4] ndctl, bash-completion: Add bash completion for inject-smart Date: Thu, 8 Feb 2018 14:04:28 -0700 Message-Id: <20180208210428.7285-4-vishal.l.verma@intel.com> In-Reply-To: <20180208210428.7285-1-vishal.l.verma@intel.com> References: <20180208210428.7285-1-vishal.l.verma@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" To: linux-nvdimm@lists.01.org List-ID: 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 Signed-off-by: Vishal Verma --- 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 Linux-nvdimm@lists.01.org https://lists.01.org/mailman/listinfo/linux-nvdimm