Skip to content

Instantly share code, notes, and snippets.

@f0nZ
Created September 5, 2024 09:40
Show Gist options
  • Save f0nZ/3104be68a45e7174315dbd2260b590d3 to your computer and use it in GitHub Desktop.
Save f0nZ/3104be68a45e7174315dbd2260b590d3 to your computer and use it in GitHub Desktop.
macos-java
$ touch ~/.bash_profile
$ nano ~/.bash_profile
alias j21="export JAVA_HOME=`/usr/libexec/java_home -v 21`; java -version"
alias j17="export JAVA_HOME=`/usr/libexec/java_home -v 17`; java -version"
alias j11="export JAVA_HOME=`/usr/libexec/java_home -v 11`; java -version"
alias j8="export JAVA_HOME=`/usr/libexec/java_home -v 1.8`; java -version"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment