view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 32808:b8cbd52e26b1

Remove _with_imgstore suffix on this function. There isn't a version without it anyway.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Thu, 31 May 2012 00:36:55 +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