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

关于expect

时间:2015-11-10 13:47:27      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

1.使用ssh登录用户为weblogic的脚本,arg 0为主机地址,argv 1 为密码

#!/usr/bin/expect -f
set ip [lindex $argv 0]
set password [lindex $argv 1]
set name weblogic
set passwd weblogic
set timeout 120
spawn ssh weblogic@$ip
expect {
"*yes/no" { send "yes\r"; exp_continue"}
"*password:" { send "$passwd\r" }
}
interact

关于expect

标签:

原文地址:http://www.cnblogs.com/zydev/p/4952467.html

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