Skip to content

Instantly share code, notes, and snippets.

@UndarkAido
Created October 4, 2018 15:34
Show Gist options
  • Save UndarkAido/eb1096d2e52ac8a1947aab09ae1aba92 to your computer and use it in GitHub Desktop.
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
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