Created
March 25, 2017 20:53
-
-
Save yaroslav/b9be7edb8c162812223156c0ced67019 to your computer and use it in GitHub Desktop.
A script to run guetzli recursively for all JPEG files in current directory and lower
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
#!/bin/bash | |
find . -name '*.jp*' -print0 | xargs -0 -I{} -t guetzli --quality 90 {} {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment