We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7352486 commit 2c9a1a9Copy full SHA for 2c9a1a9
completions/smartctl
@@ -5,12 +5,12 @@ _comp_cmd_smartctl__device()
5
case $cur in
6
areca* | 3ware* | megaraid* | cciss*)
7
# shellcheck disable=SC2054
8
- COMPREPLY+=(${cur%%,*},{0..31})
+ COMPREPLY=(${cur%%,*},{0..31})
9
_comp_compgen -- -W '"${COMPREPLY[@]}"'
10
;;
11
hpt*)
12
13
- COMPREPLY+=(hpt,{1..4}/{1..8} hpt,{1..4}/{1..8}/{1..5})
+ COMPREPLY=(hpt,{1..4}/{1..8} hpt,{1..4}/{1..8}/{1..5})
14
15
16
*)
0 commit comments