Images/genicons_lx.sh
author laurent
Tue, 21 Feb 2012 23:56:13 +0100
changeset 651 34c1fa1a89a9
parent 196 54f5020531f6
permissions -rw-r--r--
Fix bug variables in Debug Variable List unregistered even if they still exist in transfered program
#!/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