#!/bin/bash

#cat $1
sed -e '/^<META/d' \
    -e '/^<script/,/--[Bb]egin[Tt]ext--/d' \
    -e '/--[Ee]nd[Tt]ext--/,$d' $1 &&
echo '</body></html>'

