#/bin/sh
####there are android:version######
RESULT=`find motorola -name "AndroidManifest.xml"|xargs grep android:versionName -l`
temp=$1
echo $1
#RESULT=`find motorola -name "AndroidManifest.xml"`
for list in $RESULT
do
`sed -i 's/android:versionName="SWITCHUI*.*"/android:versionName="'$temp'"/' $list`
done
代码是替换文件中特定的字符串。
.是匹配任意字符,*是重复的次数
阅读(1261) | 评论(0) | 转发(0) |