I know that there is a post similar to this : here . I tried using the comp command like was mentioned, but if I ahave two files, one with data like abcd and the other with data abcde, it just says the files are of different sizes. I wanted to know where exactly they differ. In unix, the simple diff tells me which row and column, the comp command in windows works if I have something like abd and abc. Not otherwise. Any ideas what I can use for this?

Thanks, Thothathri

link|improve this question

58% accept rate
feedback

4 Answers

up vote 6 down vote accepted
FC file1 file2

Can also be used for binary files:

FC /B file1 file2
link|improve this answer
brilliant! thanks! :) – wittythotha Jul 29 '11 at 18:27
feedback

Well, on Windows I happily run diff and many other of the GNU tools. You can do it with cygwin, but I personally prefer GnuWin32 because it is a much lighter installation experience.

So, my answer is that the Windows equivalent of diff, is none other than diff itself!

link|improve this answer
feedback

Winmerge has a command line utility that might be worth checking out.

Also, you can use the graphical part of it too depending on what you need.

link|improve this answer
feedback

DiffUtils is probably your best bet. It's the Windows equivalent of diff.

To my knowledge there are no built-in equivalents.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.