Created
November 9, 2012 08:12
-
-
Save jlpoveda/4044386 to your computer and use it in GitHub Desktop.
Compress all images of a directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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