images/smilies/convert.sh
author Dan
Fri, 21 Dec 2007 18:59:30 -0500
changeset 332 000773138650
parent 0 902822492a68
permissions -rw-r--r--
[Minor] fix non-localized string in installer (install_stg_buildindex_*); fix wrong string_id in pophelp:url_schemes

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