Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kumakichi/5489a51270161b653557f869645be85a to your computer and use it in GitHub Desktop.
Save kumakichi/5489a51270161b653557f869645be85a to your computer and use it in GitHub Desktop.
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" 'https://download.oracle.com/otn-pub/java/jdk/14.0.2+12/205943a0976c4ed48cb16f1043c5c647/jdk-14.0.2_linux-x64_bin.tar.gz'
// or
curl -j -k -L -b "oraclelicense=accept-securebackup-cookie" 'https://download.oracle.com/otn-pub/java/jdk/14.0.2+12/205943a0976c4ed48cb16f1043c5c647/jdk-14.0.2_linux-x64_bin.tar.gz' -o jdk-14.0.2_linux-x64_bin.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment