From 6d04fc7a64ab1dd82574935bb189e055fe2d5e72 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 3 Mar 2000 10:18:50 +0000 Subject: [PATCH] Added script to convert documentation to indexdata.dk web style. --- doc/indexdata.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 doc/indexdata.sh diff --git a/doc/indexdata.sh b/doc/indexdata.sh new file mode 100755 index 0000000..f484dcd --- /dev/null +++ b/doc/indexdata.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# $Id: indexdata.sh,v 1.1 2000-03-03 10:18:50 adam Exp $ +# Script to convert documentation to indexdata.dk style... +for i in ${package}*.html; do + j=`basename $i html`shtml + sed '-es//
<\/TD>/g' '-es/<\/BODY>/<\/TD><\/TR><\/TABLE><\/BODY>/g' '-es/\(HREF=\"yaz.*\)\.html/\1.shtml/g' < $i >$j +done -- 1.7.10.4