curl to download file located at github

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 

Thanks for your help.

1 Answer

Try with -L to follow redirects:

curl -L -o openjdk11.tar.gz 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like