我怎么只下载使用wget子目录? 我可以指定我需要下载子目录?
谢谢!
我怎么只下载使用wget子目录? 我可以指定我需要下载子目录?
谢谢!
你可以做:
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
$ wget -m -p -E -k -K -np {URL Address}
您可以使用手册页选项的详细信息。
注:与以前的选项,文件的索引会下载!
良好的信息我能使用。 我试过了:
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/
这工作得很好。