Last active
September 17, 2021 14:41
-
-
Save jvanja/17ba9bfea2bd50813518e7f52f906d35 to your computer and use it in GitHub Desktop.
Finds all pngs in "*/images" folders and executes pngquant on them overwriting the original files.
This file contains 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 ./ -path '*/images/*.png' -type f -exec pngquant -f --ext .png {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment