vote up 0 vote down star

Hello, can some one recommend a good (hopefully free) command line diff utility. I would basically need to kick it off from .Net to produce some sort of a text file with the differences between two xml files.

Thanks!

flag

44% accept rate
I'd suggest some indication of which platform, aside from a casual reference to .Net in the second sentence of the question. – David Thornley Feb 12 at 21:55

8 Answers

vote up 3 vote down

GNU utilities for Win32:

http://unxutils.sourceforge.net

link|flag
vote up 3 vote down

Not free but Beyond Compare is very good and can be driven from the command line.
It will be a well spend 30$.

... and you always can use the build in filecompare of windows, fc, offcourse.

regards,
Lieven

link|flag
if this is going to be integrated into an app, I don't think something like Beyond Compare would be a good choice (though it is a great graphical diff program). A small tool, or even better, a library, seems like the way to go. – rmeador Feb 12 at 16:14
@rmeador, a library would indeed be better. The op asked for a command line utility though. – Lieven Feb 12 at 16:18
vote up 3 vote down

Check out MSYS, it gives you diff and all the common GNU utilities on Windows.

As somebody else stated, you can also get diff and all that stuff on Windows by installing Cygwin.

link|flag
the most pertinent such utility being "diff". You can also get it through cygwin, which is my preferred approach. – rmeador Feb 12 at 16:14
vote up 2 vote down

Plain text diff don't always manage xml nicely.

Here is an existing SO question that might help: http://stackoverflow.com/questions/430001/xml-diff-and-merge

link|flag
vote up 1 vote down

Well, Windows already comes with one: FC.EXE It probably isn't the best that one can find, but may be it is good enough for what you need it for.

link|flag
vote up 0 vote down

Oh, I made a mistake. I read this because I thought you wanted a conman line diff utility.

link|flag
Ha ha, I am sure there is enough of those floating around the i-net – Alex Feb 12 at 15:07
vote up 0 vote down

WinMerge always worked for me. On the other hand, if you want something lightweight extreme, ExamDiff is only one exe file. Neither of them are command line, though.

For that I would recommend just plain diff, in combination with, for example, vim and some plugin, depending on your preferences. Diff comes with unxutils, which someone already gave the link for (see above).

link|flag
vote up 0 vote down

fc.exe is cool, good enough for my need. Thanks

link|flag

Your Answer

Get an OpenID
or

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