Mercurial > hg > nodescore
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/svgmods.sh Sun Jul 15 01:14:27 2012 +0100 @@ -0,0 +1,9 @@ +path="www/m/svg" +header='<?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?> ' + +for i in `ls $path/*.svg`; +do + echo $header > tmp.svg; + cat $i >> tmp.svg ; + mv tmp.svg $i; +done; \ No newline at end of file