Skip to content

Instantly share code, notes, and snippets.

@lucianosousa
Created November 26, 2011 17:38
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 lucianosousa/1396019 to your computer and use it in GitHub Desktop.
Save lucianosousa/1396019 to your computer and use it in GitHub Desktop.
convert cr2 for jpg
for i in *.cr2; do dcraw -c -q 0 -w -H 5 -b 8 $i | cjpeg -quality 80 > $i.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment