Skip to content

Instantly share code, notes, and snippets.

@jonas8
Created April 27, 2015 03:34
Show Gist options
  • Save jonas8/a3309c838740c5706a26 to your computer and use it in GitHub Desktop.
Save jonas8/a3309c838740c5706a26 to your computer and use it in GitHub Desktop.
Switching easily between Java JDKs on Mac OS X (.zshrc)
alias setJdk6='export JAVA_HOME=$(/usr/libexec/java_home -v 1.6)'
alias setJdk7='export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)'
alias setJdk8='export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment