shell中嵌套执行expect命令实例
一直都想把expect的操作写到bash脚本里,这样就不用我再写两个脚本来执行了,搞了一下午终于有点小成就,给大家看看吧.
系统:centos5.x
1.先安装expect
yum-yinstallexpect
2.脚本内容:
catauto_svn.sh
#!/bin/bash
passwd='123456'
/usr/bin/expect<<-EOF
settime30
spawnssh-p18330root@192.168.10.22
expect{
"*yes/no"{send"yes\r";exp_continue}
"*password:"{send"$passwd\r"}
}
expect"*#"
send"cd/home/trunk\r"
expect"*#"
send"svnup\r"
expect"*#"
send"exit\r"
interact
expecteof
EOF
这样写的话,就方便得很多,一个脚本就包括完了.