Images/genicons_lx.sh
author lbessard
Thu, 09 Apr 2009 15:39:45 +0200
changeset 343 dc8ff76b39fd
parent 196 54f5020531f6
permissions -rw-r--r--
Adding support for drag and drop wire, step and transition in debug mode
Bug with new name generating while copying groups fixed
#!/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