How to download parts of the same file from different sources with curl/wget?

12

3

I have a quite large file hosted on five different servers.

I would like to be able to download different parts of the file from each server and subsequently concatenate the parts, in order to produce the original file.

Is there any way to do this with curl/wget or any other OS X command-line tools?

Molotoff

Posted 2010-03-03T14:47:55.747

Reputation: 298

3Why was this question downvoted? It seems (potentially) relevant to others and is very specific. – trolle3000 – 2010-03-03T15:15:39.420

Answers

10

aria2 is the solution for multiple downloads of same file from different locations

http://aria2.sourceforge.net/

in your case : aria2c -s5 host1/bigfile host2/bigfile ... host5/bigfile

better late than never...

amized

Posted 2010-03-03T14:47:55.747

Reputation: 2 017

1This should be the accepted answer! – Caleb Gray – 2014-03-12T01:29:40.650