balsamine.2014-2015
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

cleanupsvg.sh
text/x-sh

Download raw (261 bytes)

#!/bin/bash

# REMOVE SODIPODI IMAGE LINKS

$SVG = $1
 #for SVG in `find . -name  "*.svg"`
  #do
     echo $SVG
     sed -i 's/sodipodi:absref=".*"//g' $SVG
     sed -i 's/inkscape:export-filename=".*"//g' $SVG
     inkscape --vacuum-defs $SVG
 #done

exit 0;