Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@DrewDouglass
Created August 3, 2016 17:17
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 DrewDouglass/c48535536398e57316877d64192c32ee to your computer and use it in GitHub Desktop.
Save DrewDouglass/c48535536398e57316877d64192c32ee to your computer and use it in GitHub Desktop.
Batch convert JPGs to grayscale with ImageMagick
mkdir bw && for i in *.jpg; do convert $i -colorspace Gray bw/$i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment