images/smilies/convert.sh
author Dan
Sun, 18 Nov 2007 18:44:55 -0500
changeset 217 5bcdee999015
parent 0 902822492a68
permissions -rw-r--r--
Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.

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