Images/genicons_lx.sh
author lbessard
Tue, 01 Jul 2008 11:13:22 +0200
changeset 219 ca1f1d3734f9
parent 196 54f5020531f6
permissions -rw-r--r--
Bug on located variable defined with devived type when dropping location fixed
#!/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