Skip to content

Instantly share code, notes, and snippets.

@j3tm0t0
Last active August 29, 2015 14:04
Show Gist options
  • Save j3tm0t0/c2dee4431d8546713ba1 to your computer and use it in GitHub Desktop.
Save j3tm0t0/c2dee4431d8546713ba1 to your computer and use it in GitHub Desktop.
bash completion for eb command.
_eb()
{
COMPREPLY=($( compgen -W "init branch start status update stop delete logs events push" ${COMP_WORDS[COMP_CWORD]} ))
}
complete -F _eb eb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment