Skip to content

Instantly share code, notes, and snippets.

@tusharm
Last active August 29, 2015 14:18
Show Gist options
  • Save tusharm/97ea0b559ff275b7d90e to your computer and use it in GitHub Desktop.
Save tusharm/97ea0b559ff275b7d90e to your computer and use it in GitHub Desktop.
_command()
{
local cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W 'foo bar baz' "$cur") )
return 0
} &&
complete -F _command command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment