#!/bin/csh -f

#--------- troff and view (uninstalled) man page file
#   usage: manf manpage_file

echo " "

troff -man -a $1 | more -e -i

echo ""

