images/smilies/convert.sh
author Dan
Sun, 24 Aug 2008 13:39:46 -0400
changeset 707 7be26f1d1068
parent 0 902822492a68
permissions -rw-r--r--
Fixed userpage events being fired even when the tabs aren't there

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