view pidgin/artwork/art-tools/clean-svg-definitions.sh @ 23967:bedb72eb2ef7

Add new artwork directory structure side by side with pidgin/pixmaps/ for smooth transition.
author Hylke Bons <hylkebons@gmail.com>
date Mon, 01 Sep 2008 13:31:43 +0000
parents
children
line wrap: on
line source

#!/bin/bash

for f in `ls *.svg`
do
  echo "Processing $f file..."
  inkscape --vacuum-defs $f
done