由于某些原因,无法在Windows 与 Linux 间使用samba 等工具进行共享文档,但需要在两个系统间同步一些文件,经过对比xshell、xftp,pscp(putty)、winscp,最终选择了pscp.exe。
pscp的安装
访问putty 官网 下载puuty 安装包,默认自带pscp 套件,也可以单独安装pscp.exe。
如何使用
打开cmd 窗口,执行pscp,用户手册如下:
PuTTY Secure Copy client
Release 0.74
Usage: pscp [options] [user@]host:source target
pscp [options] source [source...] [user@]host:target
pscp [options] -ls [user@]host:filespec
Options:
-V print version information and exit
-pgpfp print PGP key fingerprints and exit
-p preserve file attributes
-q quiet, don't show statistics
-r copy directories recursively
-v show verbose messages
-load sessname Load settings from saved session
-P port connect to specified port
-l user connect with specified username
-pw passw login with specified password
-1 -2 force use of particular SSH protocol version
-4 -6 force use of IPv4 or IPv6
-C enable compression
-i key private key file for user authentication
-noagent disable use of Pageant
-agent enable use of Pageant
-hostkey aa:bb:cc:...
manually specify a host key (may be repeated)
-batch disable all interactive prompts
-no-sanitise-stderr don't strip control chars from standard error
-proxycmd command
use 'command' as local proxy
-unsafe allow server-side wildcards (DANGEROUS)
-sftp force use of SFTP protocol
-scp force use of SCP protocol
-sshlog file
-sshrawlog file
log protocol details to a file
Windows 拷贝文件至 Linux
pscp -P 22 源文件路径 用户名@hostIp:目的路径
源文件路径:指Windows 端文件路径
用户名:Linux 端用户名,密码为用户密码(123)
hostIP:222 服务器IP
目的路径:222 服务器的绝对路径,注意一定要有中间的 “:”
Linux 拷贝文件至Windows
在Windows 上将Linux 上面的文件拷贝至本地
pscp -P 22 用户名@hostIp:源文件路径 目标文件路径
源文件路径:222 上面的文件或路径
目标路径:windows 端的路径或文件
xshell、xftp,winscp 也支持scp,大家也可以去尝试使用。
pscp对应linux scp 命令。