#!/bin/sh#修改为服务编码export.UTF-8#Set variableREPOS="$1"REV="$2"#svn安装脚本目录SVN=/usr/bin/svn#这里设置为你的网站的根目录WEB=/www/web/music#日志存放文件LOG=/www/log/svnLog/first.txt#update the code from the SVN#demo是用户名 123456是密码$SVN update $WEB --username carrot --password pwd666666 --non-interactivechmod 755 -R $WEBchown -R www.www $WEB#......................if [ $? == 0 ]then echo "$REPOS" "$REV" >> $LOG echo `date` >> $LOG echo "##############################" >> $LOGfi