如果想将.heic文件后缀改为.jpg,可以使用如下shell脚本
.heic
.jpg
shell
for file in *.heic do mv "$file" "${file%.heic}.jpg" done