Last active
June 4, 2020 13:59
-
-
Save jpesce/013bfaa34245751af026acbe8cb18a33 to your computer and use it in GitHub Desktop.
[Resize and compress images] Batch resize and compress JPGs #Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -maxdepth 1 -iname "*.jpg" | xargs -L1 -I{} convert -resize x1080 -quality 60% "{}" _resized/"{}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment