Skip to content

Instantly share code, notes, and snippets.

@nishim
Created April 8, 2022 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishim/c1c7c637370c42736bc61eb5e120f121 to your computer and use it in GitHub Desktop.
Save nishim/c1c7c637370c42736bc61eb5e120f121 to your computer and use it in GitHub Desktop.
resize images
find . -type f -name '*.jpg' -exec mogrify -resize 1600x1600 {} \;
find . -type f -name '*.jpg' -exec jpegoptim -m90 -s {} \;  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment