images/smilies/convert.sh
author Dan
Tue, 14 Aug 2007 20:48:29 -0400
changeset 92 aa8ffe41d1c4
parent 0 902822492a68
permissions -rw-r--r--
Fixed stupid redirect bug that referenced $paths without importing it, gah...

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