wget 批量下載網站目錄下的文件

今天整了一下ddnas,但是幾次更新都出問題,于是準備在diavps上搞過鏡像,自己搭建一個openwrt源。執行如下命令就會自動下載http://downloads.openwrt.org/snapshots/trunk/kirkwood/packages/下面的所有文件:

wget -nd -r -l1 --no-parent http://downloads.openwrt.org/snapshots/trunk/kirkwood/packages/

注:-nd 不創建目錄;-r 遞歸下載;-l1只下載當前目錄下的文件;–no-parent?不下載父目錄中的文件。

如果想指定下載制定后綴的文件,如只下載http://downloads.openwrt.org/snapshots/trunk/kirkwood/packages/下.ipk文件和.gz文件:

wget -nd -r -l1 --no-parent -A.ipk -A.gz http://downloads.openwrt.org/snapshots/trunk/kirkwood/packages/

搞好后,更換源,再opkg update恢復正常

下載網站目錄下的除html 之外的文件和目錄,且不遵守robots.txt的限制。

wget -c -r -np -k -L --reject=html http://mirrors.rit.edu/rpi/images/ -e robots=off

2 Responses to wget 批量下載網站目錄下的文件

  1. 灰色 says:

    要是這樣的話,如果知道他們網站程序在哪個目錄,不知道能不能把他們網站的程序都下載下來,比如.php的,嘿嘿

    licess Reply:

    @灰色, 這是不可能的,除非php是沒解析的才能下載下來

發表評論

(required)

This site uses Akismet to reduce spam. Learn how your comment data is processed.