Linux-expect脚本-编写一个expect脚本
Posted 枫子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-expect脚本-编写一个expect脚本相关的知识,希望对你有一定的参考价值。
1.声明expect #!/usr/bin/expect -f
2.设置超时时间,获取参数
set ip [lindex $argv 0 ] //接收第一个参数,并设置IP
set password [lindex $argv 1 ] //接收第二个参数,并设置密码
set timeout 10 //设置超时时间,单位为秒
3.执行ssh命令
spawn ssh [email protected]$ip
4.终端输出包含字符串"password:",输入密码,记得加上\r
expect "password:"{send "$pwd\r"}
5.终端输出分支
expect{
“yes/no”{send "yes\r"; exp_continue}
"password:"{send "$pwd\r"}
}
6.设置终端输出终止符,并退出脚本
expect eof
exit
以上是关于Linux-expect脚本-编写一个expect脚本的主要内容,如果未能解决你的问题,请参考以下文章
shell中调用expect 我编写了一个普通用户切换到root的脚本。
Linux系统shell脚本之Expect实现SSH免交互执行命令