Created
March 12, 2017 07:26
-
-
Save kepek/7f1e0268dcab2648fd55bd9e6c0d06a0 to your computer and use it in GitHub Desktop.
Optimize svg 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
#!/bin/sh | |
for f in ./images/**/*.svg; do | |
svgo $f $f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment