shell 批量重命文件后缀名

如果想将.heic文件后缀改为.jpg,可以使用如下shell脚本

for file in *.heic
do
 mv "$file" "${file%.heic}.jpg"
done

你可能感兴趣的:(shell 批量重命文件后缀名)