`
liyonghui160com
  • 浏览: 774596 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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 root@192.168.10.22
	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

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics