Images/genicons_lx.sh
author Laurent Bessard
Sun, 19 Aug 2012 16:07:01 +0200
changeset 742 75096d6c271c
parent 196 54f5020531f6
permissions -rw-r--r--
Fix bug while generating code with structured_variables as Standard Function inputs (enable to compute function return type in some cases)
#!/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