Last active
January 1, 2016 21:06
-
-
Save SonoSooS/1e1f98df50e786ade98e to your computer and use it in GitHub Desktop.
Makes JAVA_HOME as the new Java installation folder
This file contains hidden or 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
cd $JAVA_HOME; for feil in bin/*; do if [ -f $feil -a -x $feil ]; then sudo update-alternatives --install /usr/$feil `basename $feil` $JAVA_HOME/$feil 8001; fi; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment