#!/bin/csh -f
#
if ($1 == ^) then
  caterr <<'EOF'
  Print manual pages on the terminal
  usage: focasman names
  Arguments: names of programs for which the manual page is desired
  Output: Manual pages
'EOF'
  exit
endif
cd $FOCAS/man
foreach i ($*)
nroff ${i}.[0-9]|more -d
end
