# @(#) help 3.0 20jan94 Morgan_Davis @(#)

cat $/etc/help/csh
echo -n "^MWould you like a list of topics that \"man\" can describe for you? (Y/N) "
read _ask
if "$_ask" = "Y" or "$_ask" = "y" then
    echo
    whatis
    echo "^MUse the man command followed by a topic for more details."
endif
echo; unset _ask
