码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本之 给PNG图片添加后缀@3x

时间:2017-07-28 11:01:30      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:后缀   color   需要   images   image   ges   files   div   for   

 

#!/bin/sh

root_src=$(dirname $(PWD))
echo ${root_src}

image_path=${root_src}/images
echo ${image_path}
# find ${image_path} -name *.png  -exec echo {} \;
# find ${image_path}  -name "*.png" -o -name "*.hhh" -exec echo {} \;
# find ${image_path} -regex *.png\|*.jpg  -exec echo {} \;


pngfiles=`find ${image_path} -name *.png `
suffix2x=@3x.png
suffix3x=@2x.png
for file in $pngfiles
do
    if [[ ${file} =~ ${suffix2x} || ${file} =~ ${suffix3x}  ]]
      then
        echo "${file}不变"

    else
        echo "${file}需要添加@3x"
        mv ${file} "${file%.png}@3x.png"
    fi

done

 

shell脚本之 给PNG图片添加后缀@3x

标签:后缀   color   需要   images   image   ges   files   div   for   

原文地址:http://www.cnblogs.com/developer-qin/p/7248818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!