vote up 0 vote down star

I need from time to time to compare files binarily but haven't found any open source tool that can do this. UltraCompare can but it's a commercial product.

Anybody know of any?

flag

6 Answers

vote up 1 vote down

Subversion must know how. It supports incremental change recording for binary objects.

Worst case you could look at their source base...

link|flag
vote up 2 vote down

There's an open-source product called VBinDiff that I found in a search, but I don't have any direct experience with it. It appears to be cross-platform (Linux and Windows) and has packages for the binaries and source. Good luck!

link|flag
vote up 1 vote down

Have a look here for a similar question

link|flag
vote up 2 vote down

bsdiff, xdelta are two that immediately come to mind.

link|flag
vote up 0 vote down

The standard GNU diff shows if two files differ. You might want to look into xdelta for tracking changes (probably what SCM tools use).

To see changes in the files you could hexdump both files and just diff them, I suppose.

link|flag
vote up 0 vote down

GNU diffutils comes with a program called cmp that will tell you the first offset at which two binary files differ. Unfortunately, it does little more than that.

Alternatively, you could hexdump each file and pipe it into your favorite text diff tool:

diff <(hexdump -v -e '1/1 "%02x\n"' binfile1) <(hexdump -v '1/1 "%02x\n"' binfile2)
link|flag

Your Answer

Get an OpenID
or

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