home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / windiff / readme.txt < prev    next >
Text File  |  1996-01-17  |  1KB  |  49 lines

  1. A Graphical Difference Program
  2.  
  3.  
  4. SUMMARY
  5. =======
  6.  
  7. The WINDIFF tool takes two files, or two directories, and does a 
  8. byte-for-byte file comparison. It then displays the results in a scrollable 
  9. window, lining up the identical parts, and marking with color the parts of 
  10. the files that differ. This application can be useful for doing source level 
  11. management of code. 
  12.  
  13. This multithread tool allows you to interact with the window while the file 
  14. comparisons occur in the background.
  15.  
  16. MORE INFORMATION
  17. ================
  18.  
  19. Usage:
  20.  
  21. WINDIFF [paths] [saveoption]
  22.  
  23. paths
  24.  
  25. Can be either of the following forms:
  26.    
  27.     path 
  28.         Compare what's in the path with what's in the current directory.
  29.    
  30.     path1 path2
  31.         Compare what's in path1 with what's in path2.
  32.  
  33. saveoption
  34.  
  35. Can be any combination of the following flags:
  36.  
  37.     -s: Write the names of files that appear in both paths.
  38.     -l: Write the names of files that appear in only the left-hand path.
  39.     -r: Write the names of files that appear in only the right-hand path.
  40.     -d: Write the names of files that appear in both paths, but the files 
  41.         are different.
  42.  
  43. Colors:
  44.  
  45. RED designates text from the left-hand file.
  46. YELLOW designates text from the right-hand file.
  47. BLUE designates a moved line.
  48. BLACK is used for everything else.
  49.