wget的 - 下载一个子目录(wget - Download a sub directory)

2019-07-30 11:23发布

我怎么只下载使用wget子目录? 我可以指定我需要下载子目录?

谢谢!

Answer 1:

你可以做:

wget -r -l1 --no-parent http://www.domain.com/subdirectory/

哪里:

-r: recursive retrieving
-l1: sets the maximum recursion depth to be 1
--no-parent: does not ascend to the parent; only downloads from the specified subdirectory and downwards hierarchy


Answer 2:

$ wget -m -p -E -k -K -np {URL Address}

您可以使用手册页选项的详细信息。

注:与以前的选项,文件的索引会下载!



Answer 3:

良好的信息我能使用。 我试过了:

wget -r -l1 --no-parent http://www.domain.com/subdirectory/

在网站上,其中包括形式name.subname.subname2.etc.htm或.html的多个文件。 为了它们挑出来,我跑:

wget -r --no-parent http://www.domain.com/subdirectory/

这工作得很好。



文章来源: wget - Download a sub directory
标签: wget