文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>使用expect 实现 scp 文件的时候不手动输入密码

使用expect 实现 scp 文件的时候不手动输入密码

时间:2011-06-04  来源:Vincent Pan

#!/usr/bin/expect -f

set password 密码

spawn scp 用户名@目标机器ip:拷贝文件的路径 存放本地文件的路径 
set timeout 300 
expect "用户名@目标机器ip's password:" #注意:这里的“用户名@目标机器ip” 跟上面的一致
set timeout 300 
send "$password\r"
set timeout 300 
send "exit\r"

expect eof

附:scp参数
-r:拷贝目录
-c:允许压缩

一个完整的例子

#!/usr/bin/expect -f
set password 123456
#download
spawn scp [email protected]:/root/a.wmv /home/yangyz/
set timeout 300 
expect "[email protected]'s password:"
set timeout 300 
send "$password\r"
set timeout 300 
send "exit\r"
expect eof 

#upload
spawn scp /home/yangyz/abc.sql [email protected]:/root/test.sql 
set timeout 300 
expect "[email protected]'s password:"
set timeout 300 
send "$password\r"
set timeout 300 
send "exit\r"
expect eof
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载