首页 > 系统服务 > 详细

linux expect初识

时间:2015-02-12 15:24:19      阅读:241      评论:0      收藏:0      [点我收藏+]

写个命令,让ssh服务器便捷点

#!/usr/bin/expect

set type [lindex $argv 0]
if {$type == "server"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} elseif {$type == "client"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} elseif {$type == "test"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} else {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
}

set timeout 10
spawn ssh $name@$ip
expect {
    "*yes/no" {send "yes\r"; exp_continue}
    "*password:" {send "$passwd\r"}
}
interact

 

linux expect初识

原文:http://www.cnblogs.com/jaky666/p/4287845.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!