Images/genicons_lx.sh
author etisserant
Mon, 19 Jan 2009 08:21:41 +0100
changeset 305 0ed2b61de43e
parent 196 54f5020531f6
permissions -rw-r--r--
Fixed bug structures.py crashing with non-connected blocks.
#!/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