images/smilies/convert.sh
author Dan
Wed, 15 Apr 2009 14:23:48 -0400
changeset 911 facff435cdaa
parent 0 902822492a68
permissions -rw-r--r--
Made Special:Log tolerate literal, unescaped slashes in page names (hack of sorts, but still...)

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