Download all files of a particular type from a website using wget stops in the starting url

前端 未结 3 1014
心在旅途
心在旅途 2021-02-09 02:41

The following did not work.

wget -r -A .pdf home_page_url

It stop with the following message:

....
Removing site.com         


        
3条回答
  •  伪装坚强ぢ
    2021-02-09 03:07

    the following cmd works for me, it will download pictures of a site

    wget -A pdf,jpg,png -m -p -E -k -K -np http://site/path/
    

提交回复
热议问题