Skip to content

Instantly share code, notes, and snippets.

@saulodias
Created July 12, 2022 05:10
Embed
What would you like to do?
Converts SVG files from stroke to path
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