如何使用wget使用多个连接下载文件,其中每个连接都下载文件的一部分?
答案 0 :(得分:19)
使用aria2
aria2c -x 16 [url] #where 16 is the number of connections
OR
只需重复wget -r -np -N [url]
即可获得所需的线程数。这不是很好,并且肯定有更好的方法来做到这一点,但如果你想要快速和肮脏的东西它应该做的伎俩。
请查看http://blog.netflowdevelopments.com/2011/01/24/multi-threaded-downloading-with-wget/
答案 1 :(得分:11)