Created
October 4, 2018 15:34
-
-
Save UndarkAido/eb1096d2e52ac8a1947aab09ae1aba92 to your computer and use it in GitHub Desktop.
A powershell command that converts all SVGs in the current directory to PNGs
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
Get-ChildItem ".\" -Filter *.svg | Foreach-Object { inkscape -z "$($_.BaseName).svg" -e "$($_.BaseName).png" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment