Skip to content

Instantly share code, notes, and snippets.

@getaaron
Last active March 12, 2018 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save getaaron/1289cf8af7b70c865149799c7a8c1670 to your computer and use it in GitHub Desktop.
Save getaaron/1289cf8af7b70c865149799c7a8c1670 to your computer and use it in GitHub Desktop.
#!/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