使用“wget -r”未获取文件

使用“wget -r”未获取文件

我使用以下命令从 Web 服务器递归下载 rpms 文件

wget -r -np -R "index.html*" http://central-7-0-x86-64.rocksclusters.org/install/rolls/

两分钟后我明白了

Total wall clock time: 2m 41s
Downloaded: 113 files, 1.2M in 4.7s (252 KB/s)

但是,文件夹中没有*.rpm。它只获取文件夹名称和一些 xml 文件!

我如何知道wget获取所有文件?

答案1

您必须使用以下方法增加递归最大深度级别-l

wget -r -np -R "index.html*" -l 10 http://central-7-0-x86-64.rocksclusters.org/install/rolls/

或替换-r-m

wget -m -np -R "index.html*" -l 10 http://central-7-0-x86-64.rocksclusters.org/install/rolls/

相关内容