images/smilies/convert.sh
author Dan
Thu, 26 Feb 2009 01:06:58 -0500
changeset 842 f13bb4f21890
parent 0 902822492a68
permissions -rw-r--r--
setConfig() will now delete config values if the second parameter is explicitly set to false

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