Skip to content

Instantly share code, notes, and snippets.

@antonioalmeida
Created January 3, 2017 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonioalmeida/3398212f9f6fb231a5a7fe031d2d6875 to your computer and use it in GitHub Desktop.
Save antonioalmeida/3398212f9f6fb231a5a7fe031d2d6875 to your computer and use it in GitHub Desktop.
Grayscales all files in a directory (Requires imagemagick)
for f in *
do
convert $f -type Grayscale "$f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment