exp_test.sh文件
#!/bin/bash/expect
## exp_test.sh
set timeout -;
spawn ssh localhost;
expect {
"(yes/no)" {send "yes\r";exp_continue;}
"password:" {send "hadoop\r";exp_continue;}
eof {exit ;}
}
执行:expect exp_test.sh
exp_test.sh文件
#!/bin/bash/expect
## exp_test.sh
set timeout -;
spawn ssh localhost;
expect {
"(yes/no)" {send "yes\r";exp_continue;}
"password:" {send "hadoop\r";exp_continue;}
eof {exit ;}
}
执行:expect exp_test.sh