首页 > 代码库 > shell实现自动回车输入

shell实现自动回车输入

#!/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实现自动回车输入