Created
October 6, 2013 08:55
-
-
Save arunssasidhar/6851415 to your computer and use it in GitHub Desktop.
Oneliner : Bulk convert of Image files using imagemagick tool.
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
mkdir out_dir && for i in *.JPG; do convert $i -quality 60 out_dir/$i; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment