码迷,mamicode.com
首页 > Web开发 > 详细

expect 交互 telnet 交互

时间:2018-04-03 18:17:03      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:err   /usr   usr   class   echo $?   net   log   nbsp   esc   

telnet 交互

#!/bin/bash
Ip="10.0.1.53"
a="\{\‘method\‘\:\‘doLogin\‘\,\‘params\‘\:\{\‘uName\‘\:\‘bobbietest\‘\}"
/usr/bin/expect -c"
        set timeout 15
        spawn telnet ${Ip} 8000
        expect "Escape"
        send "${a}\\r"
        expect {
-re "\"err.*none\"" {
        exit 0
}
timeout {                       
        exit 1
}
eof {
        exit 2
}
        }
"
echo $?

 

expect 交互 telnet 交互

标签:err   /usr   usr   class   echo $?   net   log   nbsp   esc   

原文地址:https://www.cnblogs.com/sharesdk/p/8710086.html

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