Skip to content

Instantly share code, notes, and snippets.

@ptthisdan
Forked from Noyabronok/jdks.sh
Created December 19, 2017 08:17
Show Gist options
  • Save ptthisdan/a90903a73289599e527b26baec4e4560 to your computer and use it in GitHub Desktop.
Save ptthisdan/a90903a73289599e527b26baec4e4560 to your computer and use it in GitHub Desktop.
JDK switching
#list available jdks
alias jdks="/usr/libexec/java_home -V"
# jdk version switching - e.g. `jdk 6` will switch to version 1.6
function jdk() {
echo "Switching java version";
export JAVA_HOME=`/usr/libexec/java_home -v 1.$1`;
java -version;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment