images/smilies/convert.sh
author Dan
Thu, 12 Jun 2008 10:58:48 -0400
changeset 296 a21faa57e6c6
parent 0 902822492a68
permissions -rw-r--r--
Merging in page['visible'] patch from unstable, pages marked as invisible should now be omitted from searches

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