利用unix shell批量替换文件中的特殊字符

利用unix shell批量替换文件中的特殊字符

利用unix shell批量替换文件中的特殊字符if [ $# -ne 1 ];then
利用unix shell批量替换文件中的特殊字符
    echo 'usage:COMMAND code'
利用unix shell批量替换文件中的特殊字符    
return;
利用unix shell批量替换文件中的特殊字符fi
利用unix shell批量替换文件中的特殊字符code
=$1
利用unix shell批量替换文件中的特殊字符
利用unix shell批量替换文件中的特殊字符
for FILE in *.sql
利用unix shell批量替换文件中的特殊字符
do 
利用unix shell批量替换文件中的特殊字符    
利用unix shell批量替换文件中的特殊字符    sed s
/'#CODE#'/"$code"/$FILE > /tmp/tmp 
利用unix shell批量替换文件中的特殊字符    mv 
/tmp/tmp $FILE     
利用unix shell批量替换文件中的特殊字符    
利用unix shell批量替换文件中的特殊字符    echo 
"File $FILE dealt." 
利用unix shell批量替换文件中的特殊字符done

#用cut命令取得文件名12-100位的字符串
filename=`echo $FILE |cut -c12-100`


    本文转自永春博客园博客,原文链接:http://www.cnblogs.com/firstyi/archive/2007/07/12/815267.html,如需转载请自行联系原作者
上一篇:WebAPI性能监控-MiniProfiler与Swagger集成


下一篇:https和接口签名、api接口安全