Created
June 21, 2014 17:23
-
-
Save chetan/9b3ef40fe6ae3c71a5df to your computer and use it in GitHub Desktop.
Handy helper for choosing JDK version on OS X
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
# via http://www.jayway.com/2014/01/15/how-to-switch-jdk-version-on-mac-os-x-maverick/ | |
function setjdk() { | |
if [ $# -eq 0 ]; then | |
echo "ERROR: no jdk version given, choose from below" | |
echo "usage: setjdk 1.7" | |
echo | |
/usr/libexec/java_home --verbose | |
return | |
fi | |
echo "using jdk $@" | |
removeFromPath '/System/Library/Frameworks/JavaVM.framework/Home/bin' | |
if [ -n "${JAVA_HOME+x}" ]; then | |
removeFromPath $JAVA_HOME/bin | |
fi | |
export JAVA_HOME=`/usr/libexec/java_home -v $@` | |
export PATH=$JAVA_HOME/bin:$PATH | |
} | |
function removeFromPath() { | |
export PATH=$(echo $PATH | sed -E -e "s;:$1;;" -e "s;$1:?;;") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment