Wget:将文件下载到特定目录


9

我一直试图让wget将所有文件下载到特定目录。我尝试了-O选项,但得到了

/ home / user / xml /:是目录

这就是我到目前为止

wget -m --user=user --password=pass -r -l1 --no-parent -A.rss ftp://localhost/public_html/

我需要将所有.rss文件从ftp下载到辅助服务器上的特定目录。

Answers:


7

-P选项将所有文件下载到特定目录,但是它在目标目录中创建了2个新目录。

因此文件进入/home/user/xml/192.168.1.1/public_html/

因此,我使用-P选项和-nd选项进行了尝试,并且按我需要的方式工作。

最终代码如下所示

wget -m -nd --user=user --password=password -r -l1 --no-parent -A.rss ftp://localhost/public_html/ -P /home/user/Desktop/xml/

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.