home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / plbin.zip / pl / library / doc < prev    next >
Text File  |  1992-05-26  |  218b  |  9 lines

  1. #!/bin/csh
  2. # Generate documentation from a library file
  3. # Jan Wielemaker. July 17, 1988
  4.  
  5. foreach file ($*)
  6.     if ( $file =~ *.pl ) set file=$file:r
  7.     awk -f Doc.Awk $file:r.pl | sed -f Doc.Sed > doc/$file:r.doc
  8. end
  9.