Skip to content

Instantly share code, notes, and snippets.

@binakot
Created May 23, 2019 20:37
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 binakot/ab72d2e2b83e4c589741ba94c1546ae2 to your computer and use it in GitHub Desktop.
Save binakot/ab72d2e2b83e4c589741ba94c1546ae2 to your computer and use it in GitHub Desktop.
Aliases for different java version on MacOS
$ touch ~/.bash_profile
$ nano ~/.bash_profile
alias j12="export JAVA_HOME=`/usr/libexec/java_home -v 12`; java -version"
alias j11="export JAVA_HOME=`/usr/libexec/java_home -v 11`; java -version"
alias j10="export JAVA_HOME=`/usr/libexec/java_home -v 10`; java -version"
alias j9="export JAVA_HOME=`/usr/libexec/java_home -v 9`; java -version"
alias j8="export JAVA_HOME=`/usr/libexec/java_home -v 1.8`; java -version"
alias j7="export JAVA_HOME=`/usr/libexec/java_home -v 1.7`; java -version"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment