Skip to content

Instantly share code, notes, and snippets.

@kidsil
Created October 29, 2014 20:04
Show Gist options
  • Save kidsil/828b2fef3f1e5485e875 to your computer and use it in GitHub Desktop.
Save kidsil/828b2fef3f1e5485e875 to your computer and use it in GitHub Desktop.
Convert all PNG image files to grayscale (creating a copy named Filename_gray.png)
for f in *.png; do
convert ./"$f" -colorspace Gray ./"${f%.png}_gray.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment