Created
July 12, 2022 05:10
-
-
Save saulodias/dfd2a22e6eb53cdb48a3ca2dd992519d to your computer and use it in GitHub Desktop.
Converts SVG files from stroke to path
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
mkdir -p _output | |
for i in *.svg | |
do | |
inkscape --actions="select-all;selection-ungroup;select-all;selection-ungroup;select-all;object-stroke-to-path;" --export-filename=- $i > _output/$i | |
echo "done with "$i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment