工程较大,有很多存储图片的目录,我想把所有的单倍图片(不带@
2x)的图片全部删除,有什么好办法吗?
#!/bin/bash
dir="/Users/liuyue/Workspace/Repo/kbatterydoctor_trunk"
cd $dir
all_pngs=`find . -name "*.png" | sort -u`
for png in $all_pngs
do
# echo "$png"
#get the dirname
dirname=`dirname $png`
#get the filename without dir
filename=`basename $png`
#get name without suffix
name=`echo "$filename" | cut -d '.' -f1`
done
问题是不知道怎么找出不带@
2x的文件名。