summaryrefslogtreecommitdiffstats
path: root/bash-completion/ipcs
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/ipcs')
-rw-r--r--bash-completion/ipcs28
1 files changed, 14 insertions, 14 deletions
diff --git a/bash-completion/ipcs b/bash-completion/ipcs
index 2cb7e613c..ce93e4d8e 100644
--- a/bash-completion/ipcs
+++ b/bash-completion/ipcs
@@ -13,20 +13,20 @@ _ipcs_module()
return 0
;;
esac
- OPTS="-i --id
- -h --help
- -V --version
- -m --shmems
- -q --queues
- -s --semaphores
- -a --all
- -t --time
- -p --pid
- -c --creator
- -l --limits
- -u --summary
- --human
- -b --bytes"
+ OPTS="--id
+ --help
+ --version
+ --shmems
+ --queues
+ --semaphores
+ --all
+ --time
+ --pid
+ --creator
+ --limits
+ --summary
+ --human
+ --bytes"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
}