Multiple simultaneous downloads using Wget?

前端 未结 16 1202
旧时难觅i
旧时难觅i 2020-12-04 04:50

I\'m using wget to download website content, but wget downloads the files one by one.

How can I make wget download using 4 simultaneous connections?

16条回答
  •  無奈伤痛
    2020-12-04 05:20

    Since GNU parallel was not mentioned yet, let me give another way:

    cat url.list | parallel -j 8 wget -O {#}.html {}
    

提交回复
热议问题