Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- bash-completion/Makemodule.am | 3 +++ bash-completion/ipcmk | 27 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 bash-completion/ipcmk diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index 5372ed0..e4196a3 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 0000000..696266c --- /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 -- 2.7.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html