diff options
| author | Ramakrishnan G <rameshg87@gmail.com> | 2014-06-22 23:31:50 +0530 |
|---|---|---|
| committer | Ramakrishnan G <rameshg87@gmail.com> | 2014-07-09 22:50:12 +0530 |
| commit | 1155530941ddeb1b948939fa400ba722ed5ccd0f (patch) | |
| tree | 0b2d6300c0984fb6c907e856d6185d779cd6fadc /tools | |
| parent | 2ea6e1026a357161e81306884f00d4f0cb79b469 (diff) | |
| download | python-ironicclient-1155530941ddeb1b948939fa400ba722ed5ccd0f.tar.gz | |
Add bash completion support for ironic cli
This commit adds the 'bash-completion' option to
ironic cli which prints all sub-commands and
options, and bash_completion scripts for bash
auto completion.
Change-Id: Ide5b29e262b4217046f124d86902cd0abfdab1b6
Closes-Bug: 1332408
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/ironic.bash_completion | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/ironic.bash_completion b/tools/ironic.bash_completion new file mode 100644 index 0000000..fbc32f2 --- /dev/null +++ b/tools/ironic.bash_completion @@ -0,0 +1,27 @@ +_ironic_opts="" # lazy init +_ironic_flags="" # lazy init +_ironic_opts_exp="" # lazy init +_ironic() +{ + local cur prev nbc cflags + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + + if [ "x$_ironic_opts" == "x" ] ; then + nbc="`ironic bash-completion | sed -e "s/ *-h */ /" -e "s/ *-i */ /"`" + _ironic_opts="`echo "$nbc" | sed -e "s/--[a-z0-9_-]*//g" -e "s/ */ /g"`" + _ironic_flags="`echo " $nbc" | sed -e "s/ [^-][^-][a-z0-9_-]*//g" -e "s/ */ /g"`" + _ironic_opts_exp="`echo "$_ironic_opts" | tr ' ' '|'`" + fi + + if [[ " ${COMP_WORDS[@]} " =~ " "($_ironic_opts_exp)" " && "$prev" != "help" ]] ; then + COMPLETION_CACHE=$HOME/.cache/python-ironicclient/*/*-cache + cflags="$_ironic_flags "$(cat $COMPLETION_CACHE 2> /dev/null | tr '\n' ' ') + COMPREPLY=($(compgen -W "${cflags}" -- ${cur})) + else + COMPREPLY=($(compgen -W "${_ironic_opts}" -- ${cur})) + fi + return 0 +} +complete -F _ironic ironic |
