#!/bin/sh
### easy pipe to convert script to sgml input.
/bin/sed -e 's/&/\&amp;/g' -e 's/>/\&gt;/g' -e 's/</\&lt;/g' 

