view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 29033:61cd675b73df

jabber: Don't print "Extra content at the end of the document". This has been suggested by several people. It's papering over a possible race issue (as pointed out by wjt), but since everyone reports this as the cause of their connection problems, this is probably net better.
author Paul Aurich <paul@darkrain42.org>
date Sat, 28 Nov 2009 05:51:05 +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