home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / readmes / fdiff.rea < prev    next >
Text File  |  1993-02-02  |  670b  |  18 lines

  1. Short: Fast diff command to compare text
  2. Uploader:u2203@sparc0a.cs.uiuc.edu
  3.  
  4. This is a fast, simple diff command which doesn't give up
  5. until memory runs out. It needs enough memory to hold
  6. all the differing lines from both files since the last
  7. time synch was lost.
  8.  
  9. It takes order (n + m^3) time where n is the total number of lines
  10. in both files and m is the number of differing lines. This may
  11. seem slow but typically m is much less than n, and so things
  12. aren't so bad.
  13.  
  14. Also it's written in assembly w/ all the longwords long-word aligned
  15. for 68020's and higher. It needs just a 68000 and 2.04 or higher---
  16. the longword alignment is just a bonus for 32bit machines.
  17.  
  18.