images/smilies/render-smilies.sh
author Dan
Sun, 21 Jun 2009 00:20:32 -0400
changeset 1027 98c052fc3337
parent 944 073a42e4177f
permissions -rw-r--r--
First implementation of new parser; Text_Wiki is now gone. VERY BETA! WiP.

#!/bin/bash
for f in *.svg; do
    echo Converting $f
    fname=`echo $f | cut -d '.' -f 1`
    rm -f $fname.png
    inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done