Last active
April 10, 2022 17:34
-
-
Save mostafabahri/e8b72b0709908c2c66af2c7033f38fc2 to your computer and use it in GitHub Desktop.
Convert svg to png bash script
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
for file in *.svg | |
do | |
name=$(basename $file .svg) | |
svgexport $name.svg $name.png 300:300 80% | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment