是否可以使用来自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是二进制文本文件
答案 0 :(得分:3)
您可以执行以下操作:
curl -s http://somefile.com/file | curl --data-binary @- http://somewhere.com