1、使用expect工具,如:
1)自动登陆
#!/usr/bin/expect
spawn ssh 用户@IP
expect {
"yes/no" { send "yes\r"; exp_continue}
"password:" {
send "密码\r";
interact
}
}
1)expect使用spawn调用其他的执行程序
2)使用expect ,send 组合实现自动交互
3)interact 执行后保持交互状态
2、使用重定向
不懂。。回头再看