Wget
如何使用 wget 下載網站上鍊接的所有文件
我使用以下命令從網站獲取所有 PDF:
wget --no-directories --content-disposition --restrict-file-names=nocontrol -e robots=off -A.pdf -r \ url
但是,這只會下載 .pdf 文件。如何擴展此命令以同時下載 .ppt 和 .doc 文件?
wget
的-A
選項採用逗號分隔的接受列表,而不僅僅是單個項目。wget --no-directories --content-disposition --restrict-file-names=nocontrol \ -e robots=off -A.pdf,.ppt,.doc -r url
查看
man wget
並蒐索-A
更多詳細資訊。