Last active
June 10, 2025 23:17
-
-
Save kazimolmez/c31236dbf4689abcd28bcf2b1a10f43a to your computer and use it in GitHub Desktop.
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
sudo apt install imagemagick jpegoptim | |
mkdir optimized | |
for img in *.jpg; do | |
convert "$img" -resize 1200x "optimized/$img" | |
jpegoptim --max=90 --strip-all "optimized/$img" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment