Linux - 如何通过下载流上传文件?

时间:2015-10-26 12:55:30

标签: linux shell

A - 客户端存储:1GB(CentOS)

F - 文件大小:10GB(例如:http://www.ex.com/File.zip

B - 服务器路径上传:http://www.server.com/upload.php

如何在没有商店文件的情况下通过A(客户端)将F(File.zip)上传到B(服务器)? 或拆分" File.zip"多部分继续上传?

1 个答案:

答案 0 :(得分:0)

这样的事情:

curl http://www.ex.com/File.zip | curl --form "bigfile=@-" http://www.server.com/upload.php