images/smilies/render-smilies.sh
author Dan
Mon, 07 Dec 2009 15:21:47 -0500
changeset 1155 a1770361ef88
parent 944 073a42e4177f
permissions -rw-r--r--
Sessions: Made acl_check_deps() verify scope, so that all of an action's dependencies must apply to the namespace of the given action.

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