Parallel download using Curl command line utility

后端 未结 8 681
抹茶落季
抹茶落季 2020-12-13 19:08

I want to download some pages from a website and I did it successfully using curl but I was wondering if somehow curl downloads multiple pages at a

8条回答
  •  长情又很酷
    2020-12-13 19:48

    I am not sure about curl, but you can do that using wget.

    wget \
         --recursive \
         --no-clobber \
         --page-requisites \
         --html-extension \
         --convert-links \
         --restrict-file-names=windows \
         --domains website.org \
         --no-parent \
             www.website.org/tutorials/html/
    

提交回复
热议问题