Skip to content

Instantly share code, notes, and snippets.

@lachlanjc
Created October 11, 2014 21:53
Show Gist options
  • Select an option

  • Save lachlanjc/68cf67bd8bf39b9ae581 to your computer and use it in GitHub Desktop.

Select an option

Save lachlanjc/68cf67bd8bf39b9ae581 to your computer and use it in GitHub Desktop.
Optimize a ton of SVGs from the command line
#!/bin/bash
for file in $@
do
svgo $file
done
@lachlanjc

Copy link
Copy Markdown
Author

(really simple code but I need it all the time!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment