Created
January 2, 2017 01:00
-
-
Save istepanov/9713c5da2e74891e75752a085af08e9a to your computer and use it in GitHub Desktop.
Convert Canon RAW files to JPEGs (MacOS)
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
for D in `find . -type d` | |
do | |
pushd "$D" | |
for i in *.CR2; do sips -s format jpeg $i --out "${i%.*}.jpg"; done | |
popd | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment