0
votes
1answer
44 views

Tool to compare and merge files in different folders

I am developing two Java based projects that are very similar which means that what i do to the first one i can use diff to... command in Netbeans to apply the changes to the second one. However there ...
0
votes
1answer
52 views

Compare 2 files line by line

Assume that I have 2 files, like that: File 1: Verrucomicrobiaceae Porphyromonadaceae Clostridium Verrucomicrobiaceae Clostridium Bacteroidaceae Clostridium Verrucomicrobiaceae Verrucomicrobiaceae ...
0
votes
0answers
71 views

Diff two txt files using php diff-match-patch library

I am writing a customized document revision program. I read in all revisions of a document (in .txt format), and I adopt php diff-patch-match library to do the diff calculation. I think I am getting ...
-1
votes
1answer
137 views

String comparison (structured text) in bash

I need to compare two files (new.txt and old.txt) with a following structure: <Field1>,<Field2>,<Field3>,<Field4>,<Field5>,<Field6> The common lines must be ...
0
votes
1answer
115 views

Compare two files in Linux: ignoring first and last lines

I´d like to compare two files, but I don´t want to take into account the first 10 lines, and the last 3 lines of both files. I tried to do it with diff and tail commands, like in here, but without ...
0
votes
1answer
68 views

Intelligent Diff in php

I'm programming intelligent diff in php. Which will be used for comparing two files whose content are configuration of router in two time period. As an output I need make colored highlighting of ...
2
votes
3answers
103 views

space/tab/newline insensitive comparison

Suppose I have these two files: File 1: 1 2 3 4 5 6 7 File 2: 1 2 3 4 5 6 7 Is it possible to use diff to compare these two files so that the result is equal ? (Or if not, what are other tools ...
0
votes
1answer
176 views

EMF: Model Diff as Change Model / Command

Having 2 models based on the same metamodel. I could use EMF Compare to receive a Diff Model. In my case, one model is the old version of the new one. a) How do I receive a change model, describing ...
0
votes
0answers
130 views

Comparing Sqlite databases

I would like to compare Sqlite databases with each other, both schema and data. I know that a rather crude method exists by comparing the database dumps with each other. But are ther any other methods ...
0
votes
3answers
85 views

How to get complementary lines from two text files?

How to get complementary lines from two text files? File file1.txt has 123 foo 234 bar ... File file2.txt has 123 foo 333 foobar 234 bar ... I want to get all lines in file1.txt and not in ...
2
votes
2answers
677 views

Saving the output from DiffPDF / ComparePDF command line. - Comparing folders of PDF's

We have to do a comparison of about 1500 PDF's in one folder with 1500 PDF's in another to check for visual differences. We have found DiffPDF(and comparePDF command line version) for Windows which ...
1
vote
4answers
144 views

different lines in two files when ignoring last column - in bash

I have two files, smaller and bigger and bigger contains all lines of smaller. Those lines are almost same, just last column differs. file_smaller A NM 0 B GT 4 file_bigger A NM 5 <-same as ...
0
votes
1answer
181 views

how to use diff command ignoring last enter?

I'd like to use diff Unix command to compare between output files. However , sometimes there is a redundant "\n" in the end of the output , but I still want to consider files as the same. say I've ...
0
votes
2answers
29 views

How to do precision comparison between directories?

diff -r is not enough. I need comprison of modes, symlinks and like
0
votes
4answers
2k views

Text comparison algorithm

We have a requirement in the project that we have to compare two legal texts ( update1, update2) and come up with an algorithm to define how many words and how many sentences have changed. Are there ...
0
votes
1answer
85 views

Ways to log MySQL Diff?

I'm working on a project right now that required me to use a CMS that makes multiple changes to a database, I'll need those changes later in order to create a post install configuration file to reuse ...
2
votes
6answers
542 views

PHP: Datetime::Diff results comparison

i was trying to compare the difference between 2 dates, but it seems the results are pretty wrong, for example this code: $datetime1 = new DateTime('2009-10-11'); $datetime2 = new ...
0
votes
1answer
156 views

Compare tool with command line for mac

I am looking for command line tool to do diff between two HTML files. I have analysed kdiff3/command line of bbedit but my problem is dont want to open any GUI. I want to write a java program to call ...
0
votes
2answers
238 views

Compare database differences and get SQL output

I need ability to compare two similar databases. One will be slightly newer than the other and have changes to the structure of the database as well as possibly the content within it. So far I have ...
1
vote
3answers
336 views

comparing two files

I have two file file1 contents are as below =================================================== OUTPUT1:--------- orange india US xx OUTPUT2:--------- orange-1 india-1 ...
5
votes
3answers
986 views

diff files comparing only first n characters of each line

I have got 2 files. Let us call them md5s1.txt and md5s2.txt. Both contain the output of a find -type f -print0 | xargs -0 md5sum | sort > md5s.txt command in different directories. Many files ...
8
votes
2answers
1k views

Detect differences between tree structures

This is more of a CS question, but an interesting one : Let's say we have 2 tree structures with more or less the same nodes reorganized. How would you find any in some sense minimal sequence of ...
1
vote
0answers
529 views

JavaScript : Identifying what was changed between two strings

Ok this is my problem: I want produce a rich text editor when a user can make changes to a large block of text. I then want to be able to identify not only what parts of the document were changed, but ...
8
votes
6answers
728 views

Is there any language-aware diff tool?

Inserting newlines in the middle of a statement will appear as a change in most diff tools. But for most languages there are points of a code where you can insert newlines without altering the ...
0
votes
2answers
69 views

Is bidimensional comparison a SCM feature?

We have uni- and bi-dimensional diff tools. But we have those two flavors also for VCSes? Is it correct to say that SVN is unidimensional and modern SCMs are bidimensional?
1
vote
2answers
271 views

Comparison tool with option to check file names only?

I'm looking for a folder comparison tool that has an option to check file names only, not timestamps or content. I've tried Araxis Merge, Beyond Compare, and WinMerge, but none seem to have this ...
2
votes
2answers
78 views

Comparison tool with easy line insertion [closed]

Back in the good old days I used to use a tool for file comparison with one incredible feature -- you open file1, file2, see a difference, no magic here. But then you could insert an empty line(s) ...
8
votes
2answers
711 views

How do you compare two files containing C code based on code structure, not merely textual differences?

I have two files containing C code which I wish to compare. I'm looking for a utility which will construct a syntax tree for each file, and compare the syntax trees, instead of merely comparing the ...
1
vote
1answer
148 views

Anyone know of a method / tool to compare ad hoc SQL queries?

I have to convert a lot of legacy SQL queries to stored procs (rewriting and tidying) and I'm looking for an efficient way to compare the results one by one to ensure I haven't modified the behaviour. ...
15
votes
7answers
11k views

Comparing two .jar files

How do I compare two .jar files? Both of them have compiled .class files. I want the difference in terms of method changes, etc.
1
vote
5answers
710 views

Comparing text blocks for similar content

I have two text blocks, containing company names. Both contain names of hundreds of companies, the newer list has more companies. How do I remove the duplicate company names from the two lists , so ...
3
votes
4answers
2k views

Compare 2 directories and copy differences to directory 3

I have three directories. I would like to compare directory1 with directory2, then take those changes/new files and copy them over to directory3. Is there an easy way to do this, maybe by using linux ...
1
vote
3answers
144 views

Need compare tables utility for SQL Server

Command line or library "compare tables" utility for SQL server with comprehensive diff output to a file in .Net I can't find anything like that. Commercial or free ( XSQL Lite is suitable for my ...
0
votes
4answers
298 views

Using combination of File Size and Hash value of only first 20KB of a file to detect duplicates?

A project I'm working on requires detection of duplicate files. Under normal circumstances I would simply compare the file bytes in blocks or hash value of the entire file contents. However, the ...
1
vote
1answer
940 views

text comparison/difference algorithm

Is there a c# library/algorithm that compares 2 texts and displays what is different in them?
1
vote
2answers
614 views

Watch a web page for changes

I googled and couldn't find any could that would compare a webpage to a previous version. In this case the page I'm trying to watch is link text. There are services that can watch a page, but I'd ...
2
votes
10answers
298 views

What is the best inline file comparer for Windows?

My Source Safe file comparer (diff) doesn't say where in the line there are differences. Which tool would I use for that? And before someone tries to move it to SU, please note that we developers ...
9
votes
6answers
665 views

Can diff be beaten at its own game?

I'm looking for the appropriate algorithm to use to compare two files. I think I can do better than diff due to some added constraints. What I have are two text files each containing a list of files. ...
1
vote
3answers
167 views

Diff tool which generates documentation?

I have tried Beyond Compare, and it seems to be a good tool. But I haven't found a way to export an overview of the differences. The format of it should be one that most people can read. Doc, Rtf, ...
5
votes
7answers
1k views

Determine the differences between two nearly identical photographs

This is a fairly broad question; what tools/libraries exist to take two photographs that are not identical, but extremely similar, and identify the specific differences between them? An example would ...
3
votes
6answers
3k views

Comparison of bmp files?

I want to compare two bmp files. I thought of two approaches: to compare the header as well as the information header of the two files convert the bmp file to binary and then do the above ...
7
votes
1answer
641 views

How to diff two versions of same object?

I want to compare two objects of different versions and display their differences in UI. First I call a method to know if there is any difference between the two objects The method is: public bool ...
5
votes
4answers
7k views

Java library for free-text diff [closed]

I need to match up two almost-the-same long freetext strings; i.e., to find index-to-index correspondences wherever possible. Because this is freetext, the comparison should not be line-based as in ...
0
votes
2answers
498 views

Is there a way to “diff” two XMLs element-wise?

I'm needing to check the differences between two XMLs but not "blindly", Given that both use the same DTD, I'm actually interested in verifying wether they have the same amount of elements or if ...