Created
September 19, 2019 09:28
-
-
Save documents-design/630dbde7655872b97b03b32677084eea to your computer and use it in GitHub Desktop.
Prepares images
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 | |
| mogrify -resize 900x -format jpg **/* | |
| jpegoptim --strip-all -m90 **/* | |
| find . -name "*.JPG" -delete | |
| find . -name "*.tif" -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment