summaryrefslogtreecommitdiffstats
path: root/bash-completion/fallocate
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/fallocate')
-rw-r--r--bash-completion/fallocate16
1 files changed, 11 insertions, 5 deletions
diff --git a/bash-completion/fallocate b/bash-completion/fallocate
index 561a9a4b1..670874c96 100644
--- a/bash-completion/fallocate
+++ b/bash-completion/fallocate
@@ -15,14 +15,20 @@ _fallocate_module()
esac
case $cur in
-*)
- OPTS="--keep-size
- --punch-hole
+ OPTS="
+ --collapse-range
--dig-holes
- --offset
+ --insert-range
--length
- --help
+ --keep-size
+ --offset
+ --punch-hole
+ --zero-range
+ --posix
--verbose
- --version"
+ --help
+ --version
+ "
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;