我有 Windows 10 pro,并且正在通过命令提示符使用最新版本的 pscp/putty。
我正在尝试将文件从我的 Windows 10 计算机传输到 SSH 服务器,但遇到了“不支持多个远程源”的问题
我正在输入
pscp.exe C:\Users\Coach\Desktop\ssh\test.txt [email protected] -P 2022 -i C:\Users\Coach\Desktop\ssh\priv.ppk -pw Password : /minecraft/plugins
然后出去
More than one remote source not supported
显然,将“用户名”替换为我的用户名,“ip”替换为 ip 的部分,“密码”替换为我的密码。
有人知道如何修复/出了什么问题吗?
答案1
这pscp
上传语法是:
pscp [options] source [source...] [user@]host:target
因此,就你的情况而言,应该是:
pscp.exe -P 2022 -i C:\Users\Coach\Desktop\ssh\priv.ppk -pw Password C:\Users\Coach\Desktop\ssh\test.txt [email protected]:/minecraft/plugins
另外,您确定需要密钥和密码吗?