view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 27996:b29eac4769e9

merge of '16bc7e72b5dd239ce65c63a388c2d39efc5b7c32' and '31cfeb857db37f5ed2d12cf084073349436c89e5'
author Paul Aurich <paul@darkrain42.org>
date Wed, 22 Jul 2009 04:15:02 +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