wget -nd(--no-directories)选项未按预期工作

wget -nd(--no-directories)选项未按预期工作

我正在使用wget1.12(如果有所不同,则在 msys 中),并尝试使用该-nd选项镜像网站,因为此网站上的文件和文件夹名称非常长。文档指出

‘-nd’
‘--no-directories’
    Do not create a hierarchy of directories when retrieving recursively.
    With this option turned on, all files will get saved to the current
    directory, without clobbering (if a name shows up more than once, the
    filenames will get extensions ‘.n’).

但事实并非如此。同名文件不断被覆盖(想想大型网站上的 index.html)。我该如何获得正确的行为?

PS 名称之所以这么长,是因为它们是希伯来语,并且正在转换为 ascii %HH。还有其他方法可以做到这一点吗?

相关内容