Last active
March 30, 2017 21:14
-
-
Save marcosnakamine/c9f24786ba43fee4274e6cfd1f5dce60 to your computer and use it in GitHub Desktop.
Shell - Change the quality of all images in the folder
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
#!/bin/bash | |
IFS=$'\n' | |
for i in `find -name '*.jpg'` | |
do mogrify -quality 80% "$i" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment