Images/genicons_lx.sh
author lbessard
Mon, 19 Jan 2009 17:08:17 +0100
changeset 307 fd1f6ae26d4f
parent 196 54f5020531f6
permissions -rw-r--r--
Adding support for cancelling code generation of function with no input connected
#!/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