Rootop 服务器运维与web架构

pscp的用法

| 暂无评论

pscp是windows下往linux中安全传输文件的一个软件。其官方网站是http://www.putty.org/
pscp通过ssh协议传输,方便管理员进行系统间的数据传输。
下载地址:http://the.earth.li/~sgtatham/putty/latest/x86/pscp.exe

其参数为:
C:\>pscp.exe
PuTTY Secure Copy client
Release 0.60
Usage: pscp [options] [user@]host:source target
pscp [options] source [user@]host:target
pscp [options] -ls [user@]host:filespec
Options:
-V print version information and exit 显示版本信息
-pgpfp print PGP key fingerprints and exit 显示PGP加密指纹信息
-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 ssh协议版本
-4 -6 force use of IPv4 or IPv6 使用ipv4或者是ipv6
-C enable compression 开启压缩
-i key private key file for authentication 指定密钥
-noagent disable use of Pageant
-agent enable use of Pageant
-batch disable all interactive prompts
-unsafe allow server-side wildcards (DANGEROUS)
-sftp force use of SFTP protocol
-scp force use of SCP protocol

EG:
复制c盘下iisdos.rar文件至远程主机的/tmp下:
C:\>pscp.exe -P 22 -pw redhat c:\IISDos.rar root@192.168.1.105:/tmp
IISDos.rar | 15 kB | 15.5 kB/s | ETA: 00:00:00 | 100%

复制c盘下的pscp文件夹包括子目录子文件到远程主机的/tmp下
C:\>pscp -P 22 -pw redhat -r c:\pscp root@192.168.1.105:/tmp
pscp.txt | 0 kB | 0.0 kB/s | ETA: 00:00:00 | 100%

原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/2173.html

作者:Venus

服务器运维与性能优化

发表回复