#!/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}
}
"
转载于:https://blog.51cto.com/wemux/1543960