#!/bin/bash # 更新css文件内图片的版本 # 如background:url('images/test.jpg'); 更新为 background:url('images/test.jpg?20130330121210'); csstmpl_path="/home/fdipzone/php/csstmpl" # css tmpl path css_path="/home/fdipzone/php/css" # css path replacetags=(".png" ".jpg" ".gif") # file type convertnum=0 search_child=$1 # search child echo ${search_child:=0} > /dev/null function create(){ tmplfile=$1 dfile=$2 dfolder=${dfile%/*} if [ ! -d "$dfolder" ]; then mkdir -p $dfolder fi cp "$tmplfile" "$dfile" #复制tmpl到目标文件 for tag in ${replacetags[*]} ; do newtag="$tag?$(date +%Y%m%d%H%M%S)" sed -i "s/$tag/$newtag/g" "$dfile" #使用sed -i 替换文件内容 done convertnum=$(($convertnum+1)) tolog "$tmplfile convert to $dfile success" } function tolog(){ echo $1 } function update(){ if [ -d "$csstmpl_path" ] && [ -d "$css_path" ]; then if [ "$search_child" -eq 0 ]; then maxdepth=" -maxdepth 1 " else maxdepth="" fi for file in $(find $csstmpl_path $maxdepth -name "*.css" -type f) ; do dfile=${file/$csstmpl_path/$css_path} create $file $dfile done echo "convert num: $convertnum" else tolog "$csstmpl_path or $css_path not exists" fi } update exit 0
查看PHP版:http://blog.csdn.net/fdipzone/article/details/8570525
查看上一版:http://blog.csdn.net/fdipzone/article/details/8577952
作者:csdn博客 傲雪星枫
返回栏目页:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/extra/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索function
csdn博客
mysql update 优化、mysql update in 优化、update 优化、mysql update语句优化、oracle update优化,以便于您获取更多的相关知识。
时间: 2024-09-17 20:49:42