我正在尝试运行此命令以从目录名156获取文件,但它也会从Output目录的子目录中下载内容。
wget -r -np -nH --cut-dirs=5 -R index.html -R '*.md5,*.sha1' http://servername:8081/ART/simple/Reposiotry/Output/156 -P Artifacts -o Output.log
查看日志,我看到156的内容已下载,但是,它还会下载155的内容,原始文件将替换为155的文件。
任何帮助我从156获取文件而没有其他父目录的帮助?
答案 0 :(得分:0)
在语法末尾添加'/'修复了问题。所以我目前的语法是
wget -r -np -nH --cut-dirs=5 -R index.html -R '*.md5,*.sha1' http://servername:8081/ART/simple/Reposiotry/Output/156/ -P Artifacts -o Output.log