eleandar Asked: 2020-04-04 00:33:05 +0800 CST2020-04-04 00:33:05 +0800 CST 2020-04-04 00:33:05 +0800 CST wget 在 ftpes:// 772 当我运行以下命令行时: wget --user=anonymous ftpes://x.x.x.x:x/FTP/image.bin.gz 它返回不支持 ftpes。 有要安装的软件包吗? ftp wget 19.10 2 个回答 Voted Best Answer Jos 2020-04-04T01:31:23+08:002020-04-04T01:31:23+08:00 取自这个 StackOverflow 答案wget,如果版本是 1.18 或更高版本,OP 已确认以下内容可以工作: wget --secure-protocol=auto --no-proxy \ --no-passive-ftp --ftp-user=XXXXX --ftp-password=YYYYY \ --no-check-certificate ftps://ZZZZZZZZ.com:21 或curl等价物: curl ftp://myuser:[email protected]:x/FTP/image.bin.gz -k \ --ftp-ssl --output image.bin.gz eleandar 2020-04-04T02:26:36+08:002020-04-04T02:26:36+08:00 @Jos:是的,这行得通! wget --secure-protocol=auto --no-proxy --no-passive-ftp --ftp-user=myuser --ftp-password=mypassword --no-check-certificate ftps://x.x.x.x:x/FTP/image.bin.gz 或卷曲: curl ftp://myuser:[email protected]:x/FTP/image.bin.gz -k --ftp-ssl --output image.bin.gz
取自这个 StackOverflow 答案
wget
,如果版本是 1.18 或更高版本,OP 已确认以下内容可以工作:或
curl
等价物:@Jos:是的,这行得通!
或卷曲: