summaryrefslogtreecommitdiffstats
path: root/bash-completion/swapon
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/swapon')
-rw-r--r--bash-completion/swapon26
1 files changed, 13 insertions, 13 deletions
diff --git a/bash-completion/swapon b/bash-completion/swapon
index 6e05b6e1e..e1271539b 100644
--- a/bash-completion/swapon
+++ b/bash-completion/swapon
@@ -25,19 +25,19 @@ _swapon_module()
esac
case $cur in
-*)
- OPTS="-a --all
- -d --discard
- -e --ifexists
- -f --fixpgsz
- -p --priority
- -s --summary
- --show
- --noheadings
- --raw
- --bytes
- -v --verbose
- -h --help
- -V --version"
+ OPTS="--all
+ --discard
+ --ifexists
+ --fixpgsz
+ --priority
+ --summary
+ --show
+ --noheadings
+ --raw
+ --bytes
+ --verbose
+ --help
+ --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;