shell嵌套expect执行命令

一直都想把expect的操作写到bash脚本里,这样就不用我再写两个脚本来执行了,搞了一下午终于有点小成就,给大家看看吧.

  系统:centos 5.x

1.先安装expect

yum -y install expect

2.脚本内容:

cat auto_svn.sh

#!/bin/bash
	passwd='123456'
	/usr/bin/expect <<-EOF
	set time 30
	spawn ssh -p18330 [email protected]
	expect {
	"*yes/no" { send "yes\r"; exp_continue }
	"*password:" { send "$passwd\r" }
	}
	expect "*#"
	send "cd /home/trunk\r"
	expect "*#"
	send "svn up\r"
	expect "*#"
	send "exit\r"
	interact
	expect eof
	EOF

 

猜你喜欢

转载自liyonghui160com.iteye.com/blog/2212478