Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要下载的 IP 上的文件文件夹。我可以使用 PUTTY 执行此操作吗?
我试过使用
scp user@servername:/home/folder-to-download C:\temp\
但它似乎不起作用
如果您使用的是 putty,则命令为pscp. 保罗的-r提示也很重要:
pscp
-r
pscp -r user@servername:/home/folder-to-download C:\temp\
您需要使其成为递归副本:
scp -r user@servername:/home/folder-to-download C:\temp\
有关可能选项的列表,请参见scp 手册页,包括-r.