images/smilies/convert.sh
author Dan
Fri, 22 Jun 2007 10:16:14 -0400
changeset 12 c96a9b56f16c
parent 0 902822492a68
permissions -rw-r--r--
Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)

#!/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