Skip to content

Instantly share code, notes, and snippets.

@moretea
Created September 5, 2010 15:26
Show Gist options
  • Select an option

  • Save moretea/566089 to your computer and use it in GitHub Desktop.

Select an option

Save moretea/566089 to your computer and use it in GitHub Desktop.
#Original:
# if groups | grep -q rvm ; then
# source "/usr/local/lib/rvm"
# fi
# Doesnt work, since
# $ groups => root
# $ groups `whoami` => root : root rvm
#
# This works:
if groups `whoami` | grep -q rvm ; then
source "/usr/local/lib/rvm"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment