images/smilies/convert.sh
author Dan
Sat, 02 Feb 2008 23:14:32 -0500
changeset 398 7aa9370830f8
parent 0 902822492a68
permissions -rw-r--r--
Fixed some MySQL installation schema bugs, thanks to rainmain on the forums.

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