Are there any tools that allow to "diff" text files of terabyte size?
feedback
|
migrated from stackoverflow.com Apr 7 '11 at 11:53
This question came from our site for professional and enthusiast programmers.
|
You can use "bdiff". It is used to compare files that are too large to be loaded in memory. http://manpages.unixforum.co.uk/man-pages/unix/solaris-10-11_06/1/bdiff-man-page.html | |||||
feedback
|
|
Are the files sortable? (e.g. via "sort" command) If they are, and depending on the kind of difference you are looking for and if this is a once-off exercise, why don't you sort them each, split into the letters of the alphabet (or whatever, as long as you get multiple files) and then compare each letter.. Primitive, but might work neat and easily for you? | |||
|
feedback
|