da650d0f46
inkscape likes to hardcode the color in the elements, remove all those that use css instead
23 lines
393 B
Bash
Executable File
23 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ];
|
|
then echo Usage: $0 file.svgz
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -f $1 ]; then
|
|
echo "you must specify a valid svg"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
file=`echo $1 | cut -d'.' --complement -f2-`
|
|
mv $1 $file.svg.gz
|
|
gunzip $file.svg.gz
|
|
|
|
echo Processing $file
|
|
|
|
/usr/bin/perl -p -i -e "s/color:#[^;]*;fill:currentColor/fill:currentColor/g" $file.svg
|
|
|
|
gzip $file.svg
|
|
mv $file.svg.gz $file.svgz |