Skip to content

Instantly share code, notes, and snippets.

@SonoSooS
Last active January 1, 2016 21:06
Show Gist options
  • Save SonoSooS/1e1f98df50e786ade98e to your computer and use it in GitHub Desktop.
Save SonoSooS/1e1f98df50e786ade98e to your computer and use it in GitHub Desktop.
Makes JAVA_HOME as the new Java installation folder
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