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 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.
Try with -L to follow redirects:
curl -L -o openjdk11.tar.gz