码迷,mamicode.com
首页 > 其他好文 > 详细

expect笔记

时间:2016-07-01 16:05:01      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/expect -f
set ip [lindex $argv 0];
set password [lindex $argv 1]; 
set timeout 1
spawn ssh xuxm2007@$ip
expect {
"*yes/no" { send "yes\r"; exp_continue}
"*password:" { send "$password\r" }
}
expect "*$*"      这一句不能省,尼玛
send "sudo su admin \r"
expect {
"*yes/no" { send "yes\r"; exp_continue}
"*Password:" { send "$password\r" }
}

expect "*$*" 这一句不能省,尼玛
send "mkdir -p /home/admin/test \r"
send "cp -r /tmp/data /home/test \r"
send "exit\r"
send "exit\r"  别忘了是2层
expect eof

expect笔记

标签:

原文地址:http://www.cnblogs.com/xuxm2007/p/5633305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!