Skip to content

Instantly share code, notes, and snippets.

@yurinnick
Last active December 19, 2015 09:09
Show Gist options
  • Save yurinnick/5930886 to your computer and use it in GitHub Desktop.
Save yurinnick/5930886 to your computer and use it in GitHub Desktop.
Oracle JDK6u45 download & install
#!/bin/bash
URL="http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-x64-rpm.bin"
NAME="`basename ${URL}`"
wget --no-cookies --header 'Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com' --no-check-certificate ${URL} -O ${NAME}
chmod +x ${NAME}
./${NAME}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment