summaryrefslogtreecommitdiffstats
path: root/bash-completion/fallocate
diff options
context:
space:
mode:
authorKarel Zak2014-02-14 14:37:51 +0100
committerKarel Zak2014-02-14 14:37:51 +0100
commit782c290c5c1dd74f28c21ccd93a3b83445143dcf (patch)
tree07fa3e6a325842c057d756b14550e24bb2ddb6c7 /bash-completion/fallocate
parentfallocate: Add "--dig-holes" option (diff)
downloadkernel-qcow2-util-linux-782c290c5c1dd74f28c21ccd93a3b83445143dcf.tar.gz
kernel-qcow2-util-linux-782c290c5c1dd74f28c21ccd93a3b83445143dcf.tar.xz
kernel-qcow2-util-linux-782c290c5c1dd74f28c21ccd93a3b83445143dcf.zip
fallocate: add --verbose, clean up usage()
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'bash-completion/fallocate')
-rw-r--r--bash-completion/fallocate2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash-completion/fallocate b/bash-completion/fallocate
index ce5f4f14c..1a98eb085 100644
--- a/bash-completion/fallocate
+++ b/bash-completion/fallocate
@@ -15,7 +15,7 @@ _fallocate_module()
esac
case $cur in
-*)
- OPTS="--keep-size --punch-hole --dig-holes --offset --length --help --version"
+ OPTS="--keep-size --punch-hole --dig-holes --offset --length --help --verbose --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;