Images/genicons_lx.sh
author laurent
Wed, 30 Mar 2011 17:52:07 +0200
changeset 510 e7327ea490b4
parent 196 54f5020531f6
permissions -rw-r--r--
Adding support for creating contact and coil in LD Viewer instead of variable blocks when dropping a variable
#!/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