images/smilies/convert.sh
author Dan
Wed, 10 Sep 2008 10:49:13 -0400
changeset 709 a5917b034435
parent 0 902822492a68
permissions -rw-r--r--
Fixing \r\n bug in SQL parser (see comment on rev. 7a7173c0f62f in stable)

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