Images/genicons_lx.sh
author laurent
Sun, 09 Oct 2011 19:51:14 +0200
changeset 566 6014ef82a98a
parent 196 54f5020531f6
permissions -rw-r--r--
Adding support for searching text or regular expression in whole project
#!/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