Skip to content

Instantly share code, notes, and snippets.

@istepanov
Created January 2, 2017 01:00
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 istepanov/9713c5da2e74891e75752a085af08e9a to your computer and use it in GitHub Desktop.
Save istepanov/9713c5da2e74891e75752a085af08e9a to your computer and use it in GitHub Desktop.
Convert Canon RAW files to JPEGs (MacOS)
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