#!/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 调用脚本(三)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。