Skip to content

Instantly share code, notes, and snippets.

@rahim
Created November 3, 2011 05:02
Show Gist options
  • Save rahim/1335809 to your computer and use it in GitHub Desktop.
Save rahim/1335809 to your computer and use it in GitHub Desktop.
Reduce all JPEGs in folder to 500px wide and 75% quality using ImageMagick's mogrify
#!/bin/bash
mogrify -strip -type optimize -filter Cubic -resize 500x -quality 75% *.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment