Created
August 20, 2016 06:54
-
-
Save aliaksandr-s/96ba92a28b278d0b3082c0f6a8662360 to your computer and use it in GitHub Desktop.
Image optimization
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
mogrify -quality 80% *.jpg | |
-----script---- | |
for file in *.jpg; do | |
convert "$file" -quality 80% "$file" | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment