home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!kithrup!hoptoad!decwrl!mips!swrinde!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!ira.uka.de!uka!i13d6!sloboda
- From: sloboda@ira.uka.de (Tilo Sloboda)
- Newsgroups: comp.sources.wanted
- Subject: WANTED: sdiff source
- Keywords: sdiff, unix
- Message-ID: <16u5j7INN166@iraul1.ira.uka.de>
- Date: 19 Aug 92 18:57:43 GMT
- Reply-To: sloboda@ira.uka.de
- Organization: Computer Science, University of Karlsruhe, Germany
- Lines: 45
- NNTP-Posting-Host: i13d6.ira.uka.de
- Address: Room 225, Am Fasanengarten 5, 7500 Karlsruhe 1, Germany
-
-
- Hello,
-
- I'm looking for the source of sdiff.
- Does anybody know where I can get it ?
-
- PLEASE REPLY ONLY TO : sloboda@ira.uka.de
-
- thanks,
-
- Tilo.
-
- ....................................................................
-
- sdiff does a diff between two files and gives a two-column output
- (you will find corresponding lines of the two files in the same output line).
-
- example:
-
- you have two files : test1 test2
-
- >echo test1
- AHA
-
- that's it !
-
- this is much better.
- >
- > echo test2
- AHA
-
- that's it !
- >
- > diff test test2
- 4,5d3
- <
- < this is much better.
- >
- > sdiff test test2
- AHA AHA
-
- that's it ! that's it !
- <
- this is much better. <
- >
-