Last active
August 7, 2024 03:07
-
-
Save tommysdk/35053b71293d1a28d5f207ebb5abbf93 to your computer and use it in GitHub Desktop.
Change default Java version on Mac OS X using Fish shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://stackoverflow.com/a/26252993/1665539 | |
# Show all installed Java versions | |
/usr/libexec/java_home -V | |
# Select major version (if unique, otherwise specify full name e.g. 1.8.0_131) | |
set -x JAVA_HOME (/usr/libexec/java_home -v 1.8) | |
# Verify | |
java -version |
Beautiful. Thanks!
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot