view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 28518:8aa7df246e13

Eighth^WNinth time's the charm...
author Paul Aurich <paul@darkrain42.org>
date Mon, 31 Aug 2009 20:27:04 +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