0
我正在使用wget下載完整的網站。我想知道如何修改此終端命令,以便排除/跳過/不下載任何.zip文件。WGET - 排除.ZIP文件,同時下載網站
wget -m -k -K -E -p --convert-links -e robots=off http://www.example.com/
我正在使用wget下載完整的網站。我想知道如何修改此終端命令,以便排除/跳過/不下載任何.zip文件。WGET - 排除.ZIP文件,同時下載網站
wget -m -k -K -E -p --convert-links -e robots=off http://www.example.com/
wget -m -k -K -E -p --convert-links -e robots=off -R zip http://www.example.com/
把這個距離的wget GNU的手冊頁:
‘-R rejlist --reject rejlist’
Specify comma-separated lists of file name suffixes or patterns to accept or reject (see Types of Files). Note that if any of the wildcard characters, ‘*’, ‘?’, ‘[’ or ‘]’, appear in an element of acclist or rejlist, it will be treated as a pattern, rather than a suffix.
希望這有助於。
第一個命令不應該是這樣的:'wget -m -k -K -E -p --convert-links -e robots = off -R * .zip http:// www.example.com /' –
據我看到的手冊頁,給予zip,html,gif會拒絕所有具有zip,html,gif後綴的文件。當我幾分鐘前嘗試使用一個小型網頁時工作。 – phil
感謝您的澄清。這很有幫助。 –