Created
October 11, 2014 21:53
-
-
Save lachlanjc/68cf67bd8bf39b9ae581 to your computer and use it in GitHub Desktop.
Optimize a ton of SVGs from the command line
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/bash | |
for file in $@ | |
do | |
svgo $file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(really simple code but I need it all the time!)