home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro14 / readme < prev    next >
Encoding:
Text File  |  1986-08-03  |  1.0 KB  |  24 lines

  1.                 March 18, 1986
  2.  
  3. This archive is a MSDOS version of an "fgrep" utility ported from
  4. XENIX to Computer Innovations C86 (quite simple, actually).  It uses
  5. the Boyer-Moore algorithm for parallel string searches.  On XENIX it
  6. really blows the real fgrep program away in performance.  However, in
  7. MSDOS, the FIND command is still a bit faster, albeit more limited.
  8. In the archive:
  9.  
  10. bgrep.exe is the executable C86 program
  11. bm.exe is another executable created with the XENIX/DOS cross-development
  12.     system.  Note larger executable size.
  13. bm.man is the manual entry.
  14. bgrep is a Makefile, usable with Microsoft MAKE Version 4.0, only slightly
  15.     hacked from the UNIX make.
  16.  
  17. The C86 version seemed at first to run MUCH slower that the Microsoft
  18. version until I changed the file opening from an ASCII open to a BINARY
  19. open.  After that, the times seemed very close, with C86 having a slight
  20. edge.  I'd put money on the next version of C86 leaving Microsoft C in
  21. the dust.
  22.             Clay Haapala
  23.             Lee Data Corporation
  24.