标签:
for typefile in $filedir_f_2(文件夹路径)
do
typefn=$(basename $typefile)// 获取文件名
typeprefix=${typefn:0:10}// 截取字符串 根据实际情况 0:10 进行修改
if [ "$typeprefix" = ‘filename‘ ]
then
fi
done
标签:
原文地址:http://www.cnblogs.com/ZhenShi/p/5306087.html