1

I would like to donwload openjdk11 using cURL from github but the download stops just after few seconds, this is what I tried:

 curl -o openjdk11.tar.gz https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.1+13/OpenJDK11U-jdk_x64_linux_openj9_jdk-11.0.1_13_openj9-0.11.0_11.0.1_13.tar.gz

Thanks for your help.

1 Answer 1

3

Try with -L to follow redirects:

curl -L -o openjdk11.tar.gz https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.1+13/OpenJDK11U-jdk_x64_linux_openj9_jdk-11.0.1_13_openj9-0.11.0_11.0.1_13.tar.gz

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .