Skip to content

Instantly share code, notes, and snippets.

@viniciussbs
Forked from mayurah/sips: CR2 to jpeg
Created November 5, 2022 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viniciussbs/b3f45353c75df2acc8a1a0c86bf1d97e to your computer and use it in GitHub Desktop.
Save viniciussbs/b3f45353c75df2acc8a1a0c86bf1d97e 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