Files @ 12af8687043b
Branch filter:

Location: C3L/Artwork/svg2plainsvg.sh

Dennis Fink
Moved fonts to root dir
1
2
3
4
5
6
#!/bin/bash

for i in $(find Logos/SVG -type f -not -name "Laurel_Wreath.svg"); do
    new_filename=$(echo $i | sed 's/SVG/PLAIN_SVG/g')
    inkscape -f "$i" --export-plain-svg="$new_filename" -T
done