Skip to content

Instantly share code, notes, and snippets.

@jnettome
Created February 20, 2018 16:20
Show Gist options
  • Save jnettome/3c88cd831539310dc65586d3fe8512b7 to your computer and use it in GitHub Desktop.
Save jnettome/3c88cd831539310dc65586d3fe8512b7 to your computer and use it in GitHub Desktop.
compress images
find . -type f -size +150k -iname '*.png' -exec mogrify -verbose -format jpg -strip -resize 1920x1080">" -quality 80 -define jpeg:extent=140kb. {} \;
find . -type f -size +150k -iname '*.jpg' -exec mogrify -verbose -strip -resize 1920x1080">" -quality 80 -define jpeg:extent=140kb. {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment