Resuming an HTTP download with Curl

Posted on 2007-12-30

I had to download an ISO image to test some new firewall software and it got interrupted halfway through. Fortunately, curl has a way to continue from where you left out with the -C - option. A full command line looks like:

curl -C - --compressed --output disk.iso http://example/download/disk.iso

Tags: curl download