Images/genicons_lx.sh
author Laurent Bessard
Wed, 06 Jun 2012 19:04:18 +0200
changeset 706 9920d8c07e5e
parent 196 54f5020531f6
permissions -rw-r--r--
Fix bug graphic values range not reinitialized when graphic reseted
#!/bin/bash

INKSCAPE=inkscape

for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
do
 echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
 rm  -f $i.png
 "$INKSCAPE" icons.svg -z -e $i.png -i $i
done