Skip to content

Instantly share code, notes, and snippets.

@krusynth
Created August 16, 2012 17:19
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 krusynth/3371813 to your computer and use it in GitHub Desktop.
Save krusynth/3371813 to your computer and use it in GitHub Desktop.
Convert CR2 files to JPEGs and resize and greyscale
for i in *.CR2; do dcraw -c -a -w -v $i | convert - -resize '1000x1000' -colorspace gray $i.jpg; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment