images/smilies/convert.sh
author Dan
Sun, 17 Aug 2008 23:24:41 -0400
changeset 696 bd5069e1f19a
parent 0 902822492a68
permissions -rw-r--r--
Revamped page deletion interface; fixed bug where page_meta cache was not being cleared upon restoration of deleted page.

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