如何使用curl --upload-file上传2个文件

时间:2019-12-24 17:37:55

标签: curl

当我尝试这个

curl -u username:password --upload-file file1.txt http://example.com/folder/

有效。我可以上传文件。

但是它不适用于2个文件。如何使用curl上传多个文件?

如果我理解正确,-F用于发布文件,就像在主体或多部分主体等中有一个接受@Post请求和File的终结点一样。

我的情况有所不同。我没有端点。这是一个文件从一个位置到另一位置的简单传输。

1 个答案:

答案 0 :(得分:0)

如果您输入curl --manual,您将得到一个上传多个文件的好例子:

curl -u username:password --upload-file "{file1,file2}" http://www.example.com (you won't see -u username:password in the example)