如何在Midnight Commander中恢复文件上传到FTP?


Answers:


1

您可以使用curl继续中断文件上传。

curl ftp://ftp_server_host:port/path_on_server/ -u username:userpassword -T filename_to_upload -C - -#

1
-之前唯一要做的是什么-#
Rahil Wazir 2014年

@RahilWazir,如果我没有记错的话,它将在服务器端保留上传文件的名称。您可以通过一些简单的实验对其进行检查。类似于ssh上的tar示例中的内容,来自此帖子:您的所有愿望都实现了:通过SSH goo.gl/VjJ44C进行
Vitalie Ghelbert 2014年

我认为-C -彼此之间是相互联系的,删除了其中任何一个给我expected positive number parameter
Rahil Wazir 2014年

1
curl-帮助| 少,返回有关以下信息:-C,--continue-at OFFSET恢复的传输偏移。当您输入“ -C-”时,它会检查服务器上已上传了多少,然后恢复上传,否则,您可以从自定义偏移量指定上传。
Vitalie Ghelbert
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.