view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 31794:d1354c10232f

Use the @since doxygen comment for this note
author Mark Doliner <mark@kingant.net>
date Sun, 13 Mar 2011 02:12:57 +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