tags:

views:

18

answers:

1

is there any way to generate a text file with merge result.Thanks a lot! Say a.txt looks like

1
2

b.txt like

1
3

and merge result output like below

1
<<2
>>3
+1  A: 

diff a.txt b.txt > diff.txt

sparkkkey
OS: winXP. Is there any other way besides using diff (cygwin install needed). Thanks.
Stan
Powershell rocks and it runs on XP. Have fun!
sparkkkey