重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

svn调用脚本(三)

#!/bin/bash

#example:
#usrname='svnuser'
#passwd='svnpassword'
#svn_link="http://url/svn_dir"
#svn_dir="target_dir"

usrname=$1
passwd=$2
svn_link=$3
svn_dir=$4
svn_flag=".svn"

cmd=$(rpm -qa|grep "expect")
if [ $? -ne 0 ];then
        yum -y install expect
fi

cd ${svn_dir}

if [ -d ${svn_flag} ]&&[ "x${svn_link}" != "x" ] 
then
/usr/bin/expect   <<-EOF
set timeout 120
spawn svn co ${svn_link} . --username ${usrname} --password ${passwd}
expect {
        "*(yes/no)?*" { send "yes\r";exp_continue ;}
 }
EOF
else
/usr/bin/expect   <<-EOF
set timeout 120
spawn svn update
expect {
        "*Password for 'admin':*" { send "${passwd}\r";exp_continue }
        "*(yes/no)?*" { send "yes\r";exp_continue ;}
 }
EOF
fi

当前题目:svn调用脚本(三)
浏览路径:http://cqcxhl.com/article/ppcghg.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP