0

当我从 SFTP 站点下载文件时,我使用 CURL 命令从站点下载文件。但是我已经安装了 curl,即使我收到 Unsupported protocol 错误,请在命令提示符下找到我使用的脚本。

操作系统版本

-sh-3.00$ uname -a
Linux S91819  2.6.9-89.35.1.ELsmp #1 SMP Tue Jan 4 22:29:01 EST 2011 x86_64 x86_64 x86_64 GNU/Linux

-sh-3.00$ curl --version
curl 7.12.1 (x86_64-redhat-linux-gnu) libcurl/7.12.1 OpenSSL/0.9.7a zlib/1.2.1.2 libidn/0.5.6
Protocols: ftp gopher telnet dict ldap http file https ftps
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz

-sh-3.00$ curl -u xxx:yyy -O sftp://67.125.134.122/out_files/DATA.ZIP
curl: (1) Unsupported protocol: sftp
4

2 回答 2

1

curl没有sftp支持:

邮件列表

SFTP 支持刚刚添加到curl 版本 7.16.1

您必须安装更新的软件包,或者更好的是,自己从源代码构建它。GG包括版本虽然:-)

于 2013-09-11T07:50:35.743 回答
0

从您的日志输出中,您使用的是7.12.1 版的 libcurl。

7.16.1中添加了对 SFTP 的支持。

于 2013-09-11T07:50:53.593 回答