Skip to content

Instantly share code, notes, and snippets.

@elfeffe
Created August 6, 2019 16:20
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 elfeffe/9c7804d26e4aa2d4759ee25b616f1690 to your computer and use it in GitHub Desktop.
Save elfeffe/9c7804d26e4aa2d4759ee25b616f1690 to your computer and use it in GitHub Desktop.
Ubuntu resize images recursively if they are over 1mb
find . -type f -name "*.jpg" -size +1000k -exec mogrify -resize 1024x1024\> -strip -resample 80 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment