images/smilies/convert.sh
author Dan
Sun, 12 Apr 2009 19:24:33 -0400
changeset 899 df88cedf0995
parent 0 902822492a68
permissions -rw-r--r--
Allowed custom processing functions altogether for AJAX login error handling

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