images/smilies/convert.sh
author Dan
Wed, 24 Dec 2008 10:04:19 -0500
changeset 795 ca0c8fc8da6b
parent 0 902822492a68
permissions -rw-r--r--
Several thematic enhancements to Oxygen including making the main page title an h1

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