Skip to content

Instantly share code, notes, and snippets.

@zerorooot
Created December 1, 2022 05:18
Show Gist options
  • Save zerorooot/42df24165805d5bc0eff4ba9d03c0980 to your computer and use it in GitHub Desktop.
Save zerorooot/42df24165805d5bc0eff4ba9d03c0980 to your computer and use it in GitHub Desktop.
shrink photo size
#!/bin/bash
find -type f -iname "*.jpg" -size "+700k" -print0 | xargs -0 jpegoptim -m60
find -type f -iname "*.jpeg" -size "+700k" -print0 | xargs -0 jpegoptim -m60
find -type f -iname "*.png" -size "+700k" -print0 | xargs -0 optipng
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment