Skip to content

Instantly share code, notes, and snippets.

@elmer-garduno
Created November 23, 2013 14:02
Show Gist options
  • Save elmer-garduno/7614942 to your computer and use it in GitHub Desktop.
Save elmer-garduno/7614942 to your computer and use it in GitHub Desktop.
Update java alternatives in OS X. Simple script to switch between java alternatives.
#!/bin/bash
cd /System/Library/Frameworks/JavaVM.framework/Versions
sudo rm -r CurrentJDK
if [ $1 = "6" ]; then
sudo ln -s /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents CurrentJDK
fi
if [ $1 = "7" ]; then
sudo ln -s /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/ CurrentJDK
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment