home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sources / wanted / 4026 < prev    next >
Encoding:
Internet Message Format  |  1992-08-19  |  1.2 KB

  1. Path: sparky!uunet!kithrup!hoptoad!decwrl!mips!swrinde!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!ira.uka.de!uka!i13d6!sloboda
  2. From: sloboda@ira.uka.de (Tilo Sloboda)
  3. Newsgroups: comp.sources.wanted
  4. Subject: WANTED: sdiff source
  5. Keywords: sdiff, unix
  6. Message-ID: <16u5j7INN166@iraul1.ira.uka.de>
  7. Date: 19 Aug 92 18:57:43 GMT
  8. Reply-To: sloboda@ira.uka.de
  9. Organization: Computer Science, University of Karlsruhe, Germany
  10. Lines: 45
  11. NNTP-Posting-Host: i13d6.ira.uka.de
  12. Address: Room 225, Am Fasanengarten 5, 7500 Karlsruhe 1, Germany
  13.  
  14.  
  15. Hello,
  16.  
  17. I'm looking for the source of sdiff.
  18. Does anybody know where I can get it ?
  19.  
  20. PLEASE REPLY ONLY TO : sloboda@ira.uka.de
  21.  
  22. thanks,
  23.  
  24.     Tilo.
  25.  
  26. ....................................................................
  27.  
  28. sdiff does a diff between two files and gives a two-column output 
  29. (you will find corresponding lines of the two files in the same output line).
  30.  
  31. example: 
  32.  
  33. you have two files :  test1  test2
  34.  
  35. >echo test1
  36. AHA
  37.  
  38. that's it !
  39.  
  40. this is much better.
  41. >
  42. > echo test2
  43. AHA
  44.  
  45. that's it !
  46. >
  47. > diff test test2
  48. 4,5d3
  49. < this is much better.
  50. > sdiff test test2
  51. AHA                               AHA
  52.  
  53. that's it !                       that's it !
  54.                                 <  
  55. this is much better.            <  
  56.