#! /bin/csh
if ( $#argv == 0 ) then
  echo 'usage:  roffall files...'
  exit 1
endif

foreach x ($argv[1-])
     set h = $x:r
      echo "working on file: $x "
 man $h  >  $h.doc

end
