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?
|
|
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? |
||
|
|
|
|
Subversion must know how. It supports incremental change recording for binary objects. Worst case you could look at their source base... |
||
|
|
|
|
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! |
||
|
|
|
|
Have a look here for a similar question |
||
|
|
|
|
bsdiff, xdelta are two that immediately come to mind. |
||
|
|
|
|
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. |
||
|
|
|
|
GNU diffutils comes with a program called Alternatively, you could hexdump each file and pipe it into your favorite text diff tool:
|
||
|
|