我正在尝试使用 wget 从网页下载所有子文件夹和文件
wget -r -np -nH --cut-dirs=3 --include-directories="entry_*" http://test.test/root/
我只需要以“entry_”开头的目录,因此通过执行上面提供的命令,我只能获取index.html 文件。我的命令有问题吗?
答案1
好吧,所以我发现了一个问题。我没有包含 include-directories 标志的完整路径。所以命令应该看起来像
wget -r -np -nH --cut-dirs=3 --include-directories="root/entry_*" http://test.test/root/