Skip to content

Instantly share code, notes, and snippets.

@jp05451
jp05451 / sips: CR2 to jpeg
Created December 1, 2022 18:06 — forked from mayurah/sips: CR2 to jpeg
Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
# Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
mkdir Converted
for i in *.CR2; do sips -s format jpeg $i --out Converted/$i.jpg;done