Skip to content

Instantly share code, notes, and snippets.

@peterpme
Last active August 26, 2015 03:44
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 peterpme/15a87e90bffda9b98360 to your computer and use it in GitHub Desktop.
Save peterpme/15a87e90bffda9b98360 to your computer and use it in GitHub Desktop.
for dir in *; do
for i in $dir/*.png; do;
convert $i -quality 80 $i.jpg;
done;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment