Last active
March 12, 2018 18:13
-
-
Save getaaron/1289cf8af7b70c865149799c7a8c1670 to your computer and use it in GitHub Desktop.
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 | |
for file in ./*.svg | |
do | |
rsvg-convert -h 150 "${file}" > "${file%.svg}"@3x.png | |
rsvg-convert -h 100 "${file}" > "${file%.svg}"@2x.png | |
rsvg-convert -h 50 "${file}" > "${file%.svg}".png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment