Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- param()
- set-alias inkscape "C:\Program Files\Inkscape\inkscape.exe"
- Get-ChildItem -Filter *.svg | % {
- $src = $_.FullName
- $dst = $src -replace "\.svg$", ".pdf"
- "inkscape -f $($src) -A $($dst) -T"
- inkscape -f "$($src)" -A "$($dst)" -T
- }
- Write-Host "done !"
- $x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement