cURL POST - 使用URL内容的数据二进制文件?

时间:2014-11-18 19:51:09

标签: post curl

是否可以使用来自URL的内容进行Curl -data-binary POST?

来自文件的POST内容:

curl -X POST -H" Content-Type:plain / text" --data-binary" @ file.txt" http://somewhere.com

是否有curl命令可以像

那样

curl -X POST -H" Content-Type:plain / text" --data-binary" http://somefile.com/file" " http://somewhere.com"

假设http://somefile.com/file是二进制文本文件

1 个答案:

答案 0 :(得分:3)

您可以执行以下操作:

curl -s http://somefile.com/file | curl --data-binary @- http://somewhere.com