这里涉及几个知识点:
1、安装subversion,不多说了,网上有教程
2、循环遍历所有目录层级,找相 关文件
我是在linux上使用shell完成此项工作的
不懂shell的,没linux的自行绕开吧。准备工作安装subversion我就不多说了,看得懂的肯定懂,看不懂的手把手教也不懂!
第1步,先checkout出源码包
#!/bin/bash
#########svn checkout项目出来
svn_data=/data/BAK
echo -e "请输入要checkout的svn地址,格式svn://svn.demo.xx.com.cn/svn/xx"
read svnurl
dirname=`echo "$svnurl" | awk -F'/' '{print $5}'`
echo $dirname
echo -e "请输入要项目的存储目录"
read path
svn checkout $svnurl
echo "checkout完成"
mv $dirname $path
第2步,检查源码包
#!/bin/bash
###########遍历所有目录查找是否包含http:的文件和目录
basepath=$(cd `dirname $0`; pwd)
resultlog=$basepath/result.log
keywork="http://"
echo -e "请输入要检查的目录名称"
read dirname
>$resultlog
function getfile(){
for element in `ls $1`
do
dir_or_file=$1"/"$element
if [ -d $dir_or_file ]
then
getfile $dir_or_file
else
echo "$dir_or_file======"$dir_or_file
temp=`grep -i "http://" $dir_or_file`
if [ -n "$temp" ]
then
echo "temp=========is not null"$temp
#echo $dir_or_file
echo $dir_or_file"------->>>>" $temp >> $resultlog
fi
fi
done
}
getfile $dirname