putty使用
程序员文章站
2024-03-18 18:37:52
...
-
上传下载文件:
下载
pscp -scp [email protected]:/var/tmp/capture.hex c:\temp
上传
pscp -scp c:/temp/capture [email protected]:/var/tmp/capture
-scp:指定传输协议,pscp默认协议sftp
- openssh私钥转putty私钥:
puttygen keyname -o keyname.ppk
- putty工具与bat脚本配合使用
::get current directory %CD%
::define host ip, username,password
set host_ip=10.0.0.153
set username=root
set password=123456
::just aceept the host key at the first time.
echo y | PLINK.EXE -pw %password% %username%@%host_ip% "pwd"
::transfer file to server
::PSCP.EXE -pw %password% files\test.sh %username%@%host_ip%:/root
::transfer folder to server
::PSCP.EXE -pw %password% -r files %username%@%host_ip%:/root
::run a single command
::PLINK.EXE -no-antispoof -pw %password% %username%@%host_ip% "chmod 777 /root/test.sh"
::run commands from a file
PLINK.EXE -no-antispoof -pw %password% %username%@%host_ip% -m commands.txt > command_logs.txt
@pause
上一篇: CAD恢复被删除的实体
推荐阅读
-
1.9-1.12 Putty和Xshell远程**
-
putty使用
-
通过putty上传文件(SSH)
-
使用JavaScript将10进制数字转为2进制数字和任意进制数字
-
win7免安装mysql配置使用 博客分类: 每天的收获点点滴滴 MySQLwin7免安装配置中文乱码
-
【java IO】使用Java输入输出流 读取txt文件内数据,进行拼接后写入到另一个文件中
-
eclipse下使用使用sun.misc.BASE64Decoder出错解决方案 博客分类: eclipse sun.misc.BASE64DecodersunBase64
-
Redis最常用的使用场景
-
stack 栈容器的使用 满足的 数据结构是先进后出
-
在局域网内使用Windows自带的“远程桌面连接”实现PC控制PC