Last active
December 6, 2016 08:54
-
-
Save obiwankennedy/88e6e65e9ecbaea5b151 to your computer and use it in GitHub Desktop.
Convert all images (png) to gray scaled images.
This file contains 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 *.png; do name=`echo $i | awk -F '.' '{print $1}'`; convert "$i" -colorspace Gray "$name-gray.png"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment