This snippet will (in current dir):
- Convert all files of
.heic
/.HEIC
extension to ones with.png
. - Remove all original
.heic
files.
find . -type f -iname '*.heic' -print0 | while IFS= read -r -d '' file; do heif-convert "$file" -f "png" && rm "$file"; done