Skip to content

Instantly share code, notes, and snippets.

@yonixw
Created December 3, 2024 22:42
Show Gist options
  • Save yonixw/da682c951ec3634438907a01253918ef to your computer and use it in GitHub Desktop.
Save yonixw/da682c951ec3634438907a01253918ef to your computer and use it in GitHub Desktop.
Resize all images in folder
# install
sudo apt install graphicsmagick-imagemagick-compat
# in place convert
find . -name "*.jpg" | xargs -n1 mogrify -resize 25%
# save to other file
find . -name "*.jpg" | xargs -I{} convert -resize 25% "{}" "{}.small.jpg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment