Mercurial > hg > nodescore
annotate svgmods.sh @ 25:8ac67b784a8c
added svgs instead of raster notation also css for svg and bash script to add reference to svg files
author | tzara <rc-web@kiben.net> |
---|---|
date | Sun, 15 Jul 2012 01:14:27 +0100 |
parents | |
children | ac9641ecf84f |
rev | line source |
---|---|
rc-web@25 | 1 path="www/m/svg" |
rc-web@25 | 2 header='<?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?> ' |
rc-web@25 | 3 |
rc-web@25 | 4 for i in `ls $path/*.svg`; |
rc-web@25 | 5 do |
rc-web@25 | 6 echo $header > tmp.svg; |
rc-web@25 | 7 cat $i >> tmp.svg ; |
rc-web@25 | 8 mv tmp.svg $i; |
rc-web@25 | 9 done; |