linux下更改文件扩展名 在linux下更改文件扩展名1.查找当前目录下文件扩展名为"JPG"的文件数量 find . -type f -name '*.JPG' | wc -l 2.把当前目录下文件中的大写英文字母更改为小写for file in *.*do newname=`echo $file | tr "[A-Z]" "[a-z]"`mv -f $file $newname shell 2024-05-26 36 点赞 0 评论 54 浏览