images/smilies/convert.sh
author Dan
Thu, 14 Feb 2008 21:56:28 -0500
changeset 422 ca37fcd08c4e
parent 0 902822492a68
permissions -rw-r--r--
Fixed user -> user_id transition for enano_tags table

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