shell脚本 过滤出对应目录下的所有png文件名

前端之家收集整理的这篇文章主要介绍了shell脚本 过滤出对应目录下的所有png文件名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
str=("path1" "path2" "path3")
for s in ${str[@]}; do
	for file in `find "$s" -name *.png`; do
        fileName=${file##*/}
        echo ${fileName%%.*} >> extra
    done
done
原文链接:https://www.f2er.com/bash/390495.html

猜你在找的Bash相关文章