Skip to content

Instantly share code, notes, and snippets.

@arunssasidhar
Created October 6, 2013 08:55
Show Gist options
  • Save arunssasidhar/6851415 to your computer and use it in GitHub Desktop.
Save arunssasidhar/6851415 to your computer and use it in GitHub Desktop.
Oneliner : Bulk convert of Image files using imagemagick tool.
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