images/smilies/render-smilies.sh
author Dan
Wed, 06 Jan 2010 02:02:51 -0500
changeset 1206 50f6c144ec68
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed some bugs with account activation, especially if you're a half-logged-in vegetable.

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