images/smilies/convert.sh
author Dan
Mon, 21 Jan 2008 10:09:48 -0500
changeset 359 e0787bb6285b
parent 0 902822492a68
permissions -rw-r--r--
Implemented IP logging for comments and registration

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