Skip to content

Instantly share code, notes, and snippets.

View lucioreyli's full-sized avatar
:shipit:
bulding something

luci1 andrade lucioreyli

:shipit:
bulding something
View GitHub Profile
@lucioreyli
lucioreyli / select_java_version
Created November 28, 2022 18:58 — forked from tommysdk/select_java_version
Change default Java version on Mac OS X using Fish shell
# 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