Mercurial > pidgin.yaz
annotate pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 30029:bab8917b8b5c
merge of '60a434545c6f61fc0f20206c0d4eb87a9fb8de11'
and 'fe69dfeac6d98c4a6864e937ab3d45f614d43dad'
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sun, 21 Mar 2010 20:40:17 +0000 |
parents | 209da0d52824 |
children |
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 |