码迷,mamicode.com
首页 > 系统相关 > 详细

Linux expect 案例

时间:2017-04-26 23:44:14      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:linu   word   style   pre   host   expect   div   lis   ssh   

#!/usr/bin/expect

set host "192.168.31.100"
set password "lishiming"

spawn ssh root@$host
expect {
"yes/no" { send "yes\r"; exp_continue }
"assword:" { send "$password\r" }
}

expect "]*"
send "touch /tmp/1.txt\r"

expect "]*"
send "echo 1212 > /tmp/1.txt\r"

expect "]*"
send "exit\r"

 

 

 

 

    

 

   

Linux expect 案例

标签:linu   word   style   pre   host   expect   div   lis   ssh   

原文地址:http://www.cnblogs.com/pzk7788/p/6771491.html

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