view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 32424:7c65c7054905

Convert the oscar prpl to use the new API.
author andrew.victor@mxit.com
date Fri, 26 Aug 2011 19:11:09 +0000
parents 209da0d52824
children
line wrap: on
line source

#!/bin/bash

for f in `ls *.svg`
do
  echo "Processing $f file..."
  inkscape --vacuum-defs $f
done