Created
May 23, 2014 02:38
-
-
Save ejholmes/2b796278ca42cba23cd4 to your computer and use it in GitHub Desktop.
Convert CR2 files to JPG.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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