blkzone: add count option to bash-completion

and fix typo in man page

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2017-02-24 12:05:13 +01:00
parent c16970f794
commit 830043212f
2 changed files with 6 additions and 2 deletions

View File

@ -13,6 +13,10 @@ _blkzone_module()
COMPREPLY=( $(compgen -W "size" -- $cur) )
return 0
;;
'-c'|'--count')
COMPREPLY=( $(compgen -W "number" -- $cur) )
return 0
;;
'-h'|'--help'|'-V'|'--version')
return 0
;;
@ -21,7 +25,7 @@ _blkzone_module()
-*)
case $prev in
'report'|'reset')
OPTS="--verbose --offset --length"
OPTS="--verbose --offset --length --count"
;;
*)
OPTS="--help --version"

View File

@ -81,7 +81,7 @@ The maximum number of sectors the command should operate on. The default value
is the number of sectors remaining after \fIoffset\fR. This option cannot be
used together with the option \fB\-\-count\fP.
.TP
.BR \-l , " \-\-count "\fIcount\fP
.BR \-c , " \-\-count "\fIcount\fP
The maximum number of zones the command should operate on. The default value
is the nuber of zones starting from \fIoffset\fR. This option cannot be
used together with the option \fB\-\-length\fP.