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

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


end
