view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 32074:896e1e0dbe35

Forgot two files for the gg 1.11.0 update
author Ethan Blanton <elb@pidgin.im>
date Sun, 05 Jun 2011 14:15: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