Skip to content

Instantly share code, notes, and snippets.

@jpesce
Last active June 4, 2020 13:59
Show Gist options
  • Save jpesce/013bfaa34245751af026acbe8cb18a33 to your computer and use it in GitHub Desktop.
Save jpesce/013bfaa34245751af026acbe8cb18a33 to your computer and use it in GitHub Desktop.
[Resize and compress images] Batch resize and compress JPGs #Image
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