Resuming an HTTP download with Curl

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

Leave a Reply