views:

86

answers:

5

Let's say I have two files.. I want to compare them side-by-side and see what's added... anyone know?

Essentially they are the SAME file.

+2  A: 

fc(file compare) in DOS?

Bunnit
+2  A: 

Use diff on linux/unix or windiff on windows.

Ian
A: 

If you are looking for any *nix based system there is one built in called 'diff' as Raoul mentioned ... there is also 'compare' in the Windows command line which will do essentially the same (but not as thorough) ...

Otherwise you are going to need to be a bit more specific about what you want.

judda
+3  A: 

Beyond Compare

fastcodejava
+1  A: 

DiffMerge from SourceGear is also a nice tool, and it's free.

David Hoerster