Skip to content

Instantly share code, notes, and snippets.

@mayurah
Created August 9, 2017 20:42
Show Gist options
  • Select an option

  • Save mayurah/03ed7270e296be0804a73792bf82386a to your computer and use it in GitHub Desktop.

Select an option

Save mayurah/03ed7270e296be0804a73792bf82386a 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
@500160472
Copy link

I have wanted to do something like this for AGES and always overcomplicated it... this is PERFECT, Thank you! :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment