#!/bin/csh -f echo "SCHOOLS HEALTH EDUCATION UNIT" echo "=============================" echo -n "Coverting rtf coaching file to HTML" if ($#argv > 1) then echo "Usage: makeh bodyname" else if ($#argv < 1) then echo \\07 echo -n 'body? =' set body=$< else set body = $1 endif endif echo -n "Converting to HTML..." rtftohtml $body.rtf echo "...Done" echo -n "Adding pieces IMG and tidying..." sed -f Techie/tilbrtf.sed $body.html | sed -f Techie/table.sed > $body.tmp echo "...Done" echo -n "Wrapping..." cat head $body.tmp tail > $body.html echo "...Done" rm -i $body.rtf echo "Finished."