Images/genicons_lx.sh
author lbessard
Wed, 16 Apr 2008 09:46:56 +0200
changeset 201 d5b778dab4b0
parent 196 54f5020531f6
permissions -rw-r--r--
Block evaluation order fixed
Problems width not connected SFC elements 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