Skip to content

Instantly share code, notes, and snippets.

@kubaceg
Created February 11, 2014 19:48
Show Gist options
  • Save kubaceg/8942697 to your computer and use it in GitHub Desktop.
Save kubaceg/8942697 to your computer and use it in GitHub Desktop.
Compress all jpg files to 50% quality
for f in $(find . -name "*.jpg"); do convert -quality 50 $f $f; echo $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment