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

shell实现自动回车输入

时间:2014-08-24 10:23:32      阅读:414      评论:0      收藏:0      [点我收藏+]

标签:shell   expect   

#!/bin/bash

ip="172.16.1.113"

command="ssh $ip"

expect -c "
    spawn $command;
    expect {
            \"Are you sure you want to continue connecting (yes/no)?\" {send \"yes\r\"; exp_continue}
            }
        "

shell实现自动回车输入

标签:shell   expect   

原文地址:http://wemux.blog.51cto.com/2848943/1543960

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