Skip to content

Instantly share code, notes, and snippets.

@lucioreyli
Forked from tommysdk/select_java_version
Created November 28, 2022 18:58
Show Gist options
  • Save lucioreyli/bef06e7d8d29a6abbca3d76d01337c23 to your computer and use it in GitHub Desktop.
Save lucioreyli/bef06e7d8d29a6abbca3d76d01337c23 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment