Skip to content

Instantly share code, notes, and snippets.

@ejholmes
Created May 23, 2014 02:38
Show Gist options
  • Save ejholmes/2b796278ca42cba23cd4 to your computer and use it in GitHub Desktop.
Save ejholmes/2b796278ca42cba23cd4 to your computer and use it in GitHub Desktop.
Convert CR2 files to JPG.
brew install imagemagick
brew install ufraw
for infile in *.CR2; do convert $infile $(echo $infile|sed -n "s/CR2$/jpg/p"); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment