Skip to content

Instantly share code, notes, and snippets.

@jlpoveda
Created November 9, 2012 08:12
Show Gist options
  • Save jlpoveda/4044386 to your computer and use it in GitHub Desktop.
Save jlpoveda/4044386 to your computer and use it in GitHub Desktop.
Compress all images of a directory
for i in $(ls *.jpg); do convert -quality 80 $i zz_out/$i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment