File indexing completed on 2024-11-24 04:59:36

0001 #!/bin/sh
0002 
0003 if [ $# -ne 1 ]; 
0004     then echo Usage: $0 file.svgz
0005     exit 1
0006 fi
0007 
0008 if [ ! -f $1 ]; then
0009     echo "you must specify a valid svg"
0010     exit 1
0011 fi
0012 
0013 
0014 file=`echo $1 | cut -d'.' --complement -f2-`
0015 mv $1 $file.svg.gz
0016 gunzip $file.svg.gz
0017 
0018 echo Processing $file
0019 
0020 /usr/bin/perl -p -i -e "s/color:#[^;]*;(.*)fill:currentColor/\1fill:currentColor/g" $file.svg
0021 
0022 gzip -n $file.svg
0023 mv $file.svg.gz $file.svgz