#!/bin/bash

for file in `find aktualis/ -iname '*.html'`; do
echo $file
cat << EnD | ex $file
:%s+\r\n++g
:%s+	<h3 align="left">Dugonics Andr.*+&    </td></tr><tr>    <td>	<h3 align="left"><a href="csengetes.html">Csengetési rend</a></h3>+
:%s+\n<tr>\n<td>\n\t<a href="../index.html">Flash version</a>\n</td>\n</tr>++
:wq
EnD
done

