How do I use -range with -continue with cURL?

I want to download a range of bytes of a file, but I can stop or pause the download and then resume it again. I tried:

curl url --range 2000-9000 --continue -

      

But it ignores the range. Are there other tools that could do this?

+3


source to share


1 answer


Try:



curl -C - --range 2000-9000 url

      

0


source







All Articles