bash-completion: ipcmk: add missing completion file

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2016-03-13 10:31:46 +00:00 committed by Karel Zak
parent 5f57e1420c
commit 061e41250f
2 changed files with 30 additions and 0 deletions

View File

@ -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

27
bash-completion/ipcmk Normal file
View File

@ -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