cURL 从 FTPS 站点下载多个文件
我正在使用 cURL(第一次使用它)从命令行从 ftps 站点下载文件。这就是我需要做的:
从 ftps 站点下载与某个文件名匹配的多个文件,例如
Filename_csv_1998.zip
所以我需要下载名为Filename_csv_[YEAR] 的所有文件].zip
。我可以在curl中使用通配符来获取这些文件我需要将这些文件下载到单独的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:
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 nameFilename_csv_[YEAR].zip
. Can I do wildcard in curl to pick up these filesI 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,如果您想获得一定范围的年份,您可以执行类似的操作:
Sure, if you want to get a range of years you can for example do something similar to this: