jenkins 更新脚本之expect交互

#!/bin/bash
username=shuyouyun
apiKey="shuyounbkey"
date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`
password=`echo -en "$date" | openssl dgst -sha1 -hmac $apiKey -binary | openssl enc -base64`
expect << EOF
set timeout 500
spawn ssh -o StrictHostKeyChecking=no [email protected]
expect "password" {send "shuyounb@110"}
expect "#" {send "cd /home/client\r"}
expect "#" {send "zip -rp game`date +"%Y%m%d%H"`.zip game\r"}
expect "#" {send "cd game\r"}
expect "#" {send "svn up\r"}
expect "#" {send "cd game\r"}
EOF
curl -i --url "http://open.chinanetcenter.com/ccm/purge/ItemIdReceiver" \
-X "POST" \
-u "$username:$password" \
-H "Date:$date" \
-H "Content-Type: application/xml" \
-d'<?xml version="1.0" encoding="utf-8"?>
<purge>
<dirs>
<dir>https://www.nb.com/</dir>
<dir>http://www.nb.com/</dir>
<dir>http://www.nb.com/</dir>
</dirs>
<dir-action>expire</dir-action>
</purge>'

猜你喜欢

转载自www.cnblogs.com/capable/p/11345838.html