Images/genicons_lx.sh
author laurent
Sun, 09 Oct 2011 20:10:36 +0200
changeset 568 31976c61c701
parent 196 54f5020531f6
permissions -rw-r--r--
Fix bug when opening another project while current edited project has at least one tab opened
#!/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