Skip to content

Instantly share code, notes, and snippets.

@lajlev
Last active August 29, 2015 14:28
Show Gist options
  • Save lajlev/9f0ab6e01d86d23b0796 to your computer and use it in GitHub Desktop.
Save lajlev/9f0ab6e01d86d23b0796 to your computer and use it in GitHub Desktop.
Bulk convert images to grayscale
for i in *.jpg; do convert $i -colorspace Gray gray/$i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment