cURL 从 FTPS 站点下载多个文件

发布于 2024-10-25 22:39:09 字数 326 浏览 4 评论 0原文

我正在使用 cURL(第一次使用它)从命令行从 ftps 站点下载文件。这就是我需要做的:

  1. 从 ftps 站点下载与某个文件名匹配的多个文件,例如 Filename_csv_1998.zip 所以我需要下载名为 Filename_csv_[YEAR] 的所有文件].zip。我可以在curl中使用通配符来获取这些文件

  2. 我需要将这些文件下载到单独的zip文件中的目录

我想这样做如果必须的话,可以使用curl命令,然后可以使用脚本。

这可能吗。

谢谢

I am using cURL (first time using this) to download files from ftps site from the command line. This is what i need to do:

  1. Download multiple files from the ftps site that match a certain file name e.g. Filename_csv_1998.zip so I need to download all files with name Filename_csv_[YEAR].zip. Can I do wildcard in curl to pick up these files

  2. I need to download these files to a directory in separate zip files

I would like to do this using curl commands if i have to then maybe use a script.

Is this possible.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许久 2024-11-01 22:39:09

当然,如果您想获得一定范围的年份,您可以执行类似的操作:

cd correct_directory

curl --ftp-ssl ftp://example.com/dir/File_[1990-2011].zip -o file_#1.zip

Sure, if you want to get a range of years you can for example do something similar to this:

cd correct_directory

curl --ftp-ssl ftp://example.com/dir/File_[1990-2011].zip -o file_#1.zip
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文