summaryrefslogtreecommitdiffstats
path: root/bash-completion
diff options
context:
space:
mode:
authorSami Kerola2016-03-13 11:31:46 +0100
committerKarel Zak2016-03-14 13:15:14 +0100
commit061e41250f78078bffa55a3774a962d6212e0cae (patch)
tree235bef4b2155d32a2116d693493b883112aeb0a7 /bash-completion
parentbash-completion: fsck.cramfs, isosize: find files an argument (diff)
downloadkernel-qcow2-util-linux-061e41250f78078bffa55a3774a962d6212e0cae.tar.gz
kernel-qcow2-util-linux-061e41250f78078bffa55a3774a962d6212e0cae.tar.xz
kernel-qcow2-util-linux-061e41250f78078bffa55a3774a962d6212e0cae.zip
bash-completion: ipcmk: add missing completion file
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion/Makemodule.am3
-rw-r--r--bash-completion/ipcmk27
2 files changed, 30 insertions, 0 deletions
diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am
index 5372ed09d..e4196a3de 100644
--- a/bash-completion/Makemodule.am
+++ b/bash-completion/Makemodule.am
@@ -30,6 +30,9 @@ endif
if BUILD_HEXDUMP
dist_bashcompletion_DATA += bash-completion/hexdump
endif
+if BUILD_IPCMK
+dist_bashcompletion_DATA += bash-completion/ipcmk
+endif
if BUILD_IPCRM
dist_bashcompletion_DATA += bash-completion/ipcrm
endif
diff --git a/bash-completion/ipcmk b/bash-completion/ipcmk
new file mode 100644
index 000000000..696266cee
--- /dev/null
+++ b/bash-completion/ipcmk
@@ -0,0 +1,27 @@
+_ipcmk_module()
+{
+ local cur prev
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-M'|'--shmem')
+ COMPREPLY=( $(compgen -W "size" -- $cur) )
+ return 0
+ ;;
+ '-S'|'--semaphore')
+ COMPREPLY=( $(compgen -W "number" -- $cur) )
+ return 0
+ ;;
+ '-p'|'--mode')
+ COMPREPLY=( $(compgen -W "mode" -- $cur) )
+ return 0
+ ;;
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ COMPREPLY=( $(compgen -W "--shmem --semaphore --queue --mode --help --version" -- $cur) )
+ return 0
+}
+complete -F _ipcmk_module ipcmk