Skip to content

Instantly share code, notes, and snippets.

@basilio
Created August 28, 2011 20:20
Show Gist options
  • Save basilio/1177170 to your computer and use it in GitHub Desktop.
Save basilio/1177170 to your computer and use it in GitHub Desktop.
convert color images to grayscale with imagemagick (command line)
for x in `ls *.*`; do `convert -type Grayscale $x $x`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment