images/smilies/convert.sh
author Dan
Wed, 11 Jul 2007 13:08:34 -0400
changeset 63 2c57d3018a88
parent 0 902822492a68
permissions -rw-r--r--
Fixed recursive template inclusion and spaces in template tags ({{Foo template}})

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