summaryrefslogtreecommitdiffstats
path: root/bash-completion/wipefs
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/wipefs')
-rw-r--r--bash-completion/wipefs13
1 files changed, 12 insertions, 1 deletions
diff --git a/bash-completion/wipefs b/bash-completion/wipefs
index d735b5ac7..577819182 100644
--- a/bash-completion/wipefs
+++ b/bash-completion/wipefs
@@ -21,7 +21,18 @@ _wipefs_module()
esac
case $cur in
-*)
- OPTS="--all --force --help --no-act --offset --parsable --quiet --types --version"
+ OPTS="
+ --all
+ --backup
+ --force
+ --help
+ --no-act
+ --offset
+ --parsable
+ --quiet
+ --types
+ --version
+ "
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;