Skip to content

Instantly share code, notes, and snippets.

@bmaeser
Forked from mayurah/sips: CR2 to jpeg
Created October 13, 2024 14:29
Show Gist options
  • Save bmaeser/289cd6d5c2f34dcbe8eb9a27c272b415 to your computer and use it in GitHub Desktop.
Save bmaeser/289cd6d5c2f34dcbe8eb9a27c272b415 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment