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.