Images/genicons_lx.sh
author lbessard
Mon, 15 Dec 2008 09:45:16 +0100
changeset 294 4a36f2ec8967
parent 196 54f5020531f6
permissions -rw-r--r--
Two bugs fixed:
- Errors on Tab close while removing variable panel
- Error in Cut/Copy/Paste function generating 'maximum recursion exceeded' exception
#!/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