summaryrefslogtreecommitdiffstats
path: root/bash-completion/unshare
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/unshare')
-rw-r--r--bash-completion/unshare16
1 files changed, 8 insertions, 8 deletions
diff --git a/bash-completion/unshare b/bash-completion/unshare
index 5342961f6..86a4af482 100644
--- a/bash-completion/unshare
+++ b/bash-completion/unshare
@@ -11,14 +11,14 @@ _unshare_module()
esac
case $cur in
-*)
- OPTS="-m --mount
- -u --uts
- -i --ipc
- -n --net
- -p --pid
- -U --user
- -h --help
- -V --version"
+ OPTS="--mount
+ --uts
+ --ipc
+ --net
+ --pid
+ --user
+ --help
+ --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;