Skip to content

Instantly share code, notes, and snippets.

@turesheim
Last active June 7, 2022 19:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turesheim/9486922d13324576104ee083a1775785 to your computer and use it in GitHub Desktop.
Save turesheim/9486922d13324576104ee083a1775785 to your computer and use it in GitHub Desktop.
maxOS Zsh script to easily switch between Java versions
#!/usr/local/bin/zsh
# Add aliases for changing java runtime
alias j6='ju 1.6'
alias j7='ju 1.7'
alias j8='ju 1.8'
alias j9='ju 9'
# Prints the path to JAVA_HOME
alias jh=/usr/libexec/java_home
function jls() {
echo "Use ´j6, j7, j8 and j9´ to conventiently switch between Java versions."
echo "For a specific version use ´ju <version>´ where available versions are listed below:"
/usr/libexec/java_home -V 2>&1 | grep -E "\d(.\d.\d)?" | cut -d , -f 1 | grep -v Home
}
function ju() {
export JAVA_HOME=$(/usr/libexec/java_home -v $argv)
export PATH=$JAVA_HOME/bin:$PATH
launchctl setenv JAVA_HOME $JAVA_HOME
java -version
}
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
export PATH=$JAVA_HOME/bin:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment