annotate pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 32308:3e4b6ffbb551

propagate from branch 'im.pidgin.pidgin' (head 64f4eb5c598356fe1b8b9bc376faa66641096eda) to branch 'im.pidgin.pidgin.next.major' (head 950eb2e674f6da789c0132765c4f2d68ccd0d617)
author Mark Doliner <mark@kingant.net>
date Sun, 12 Jun 2011 17:56:24 +0000
parents 209da0d52824
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23877
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
1 #!/bin/bash
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
2
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
3 for f in `ls *.svg`
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
4 do
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
5 echo "Processing $f file..."
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
6 inkscape --vacuum-defs $f
209da0d52824 First steps to one-canvas workflow.
Hylke Bons <hylkebons@gmail.com>
parents:
diff changeset
7 done