expect 语句

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xxzhaobb/article/details/85260288
[oracle@atrslinux2 ~]$ more a.sh
#! /usr/bin/expect
set host "192.168.54.101"
set passwd "oracle"
spawn ssh oracle@$host   
expect {
"yes/no" { send "yes\r"; exp_continue} 
"password:" { send "$passwd\r" }   
}
interact
[oracle@atrslinux2 ~]$ 

运行结果

END

猜你喜欢

转载自blog.csdn.net/xxzhaobb/article/details/85260288