Last active
August 29, 2015 14:28
-
-
Save lajlev/9f0ab6e01d86d23b0796 to your computer and use it in GitHub Desktop.
Bulk convert images to grayscale
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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