Skip to content

Instantly share code, notes, and snippets.

@shelling
Created June 1, 2009 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelling/121526 to your computer and use it in GitHub Desktop.
Save shelling/121526 to your computer and use it in GitHub Desktop.
#!/bin/bash
complete -F _rlist rlist
function _rlist () {
local cur=${COMP_WORDS[COMP_CWORD]}
if (( $COMP_CWORD == 1 )); then
COMPREPLY=( $( compgen -W " hello world " $cur ) )
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment