blob: e9b030ce77d57d36e5aa5f1a4296f5095dae549e [file] [log] [blame]
Ayaka Koshibeaec629622015-01-05 20:33:29 -08001# tab completion settings for onos-group.
2
3# options available to onos-group
4GOPTS='install kill patch-vm push-keys uninstall'
5
6function _ogroup-opts () {
7 local cur=${COMP_WORDS[COMP_CWORD]}
8
9 if [ $COMP_CWORD -eq 1 ]; then
10 COMPREPLY=( $( compgen -W "$GOPTS help" -- $cur ) )
11 fi
12}
13
14complete -F _ogroup-opts onos-group