tags:

views:

424

answers:

7

Many years ago I used d32 which was available for DOS and Linux.

Is a non-GUI visual diff available for Linux like this one?

Any others than Vim and Emacs (Vim and Emacs are too powerful :-) )

A: 

vimdiff will do what you want. Vim is installed by default on most linux distros, so you probably do not even need to install anything.

Dave Kirby
+2  A: 

I'm using vimdiff. Or there is also sdiff.

Gregory Pakosz
+1  A: 

Personally I like to use vimdiff. But if you don't know vim that won't be that helpful to you.

Jason Axelson
A: 

Vim comes with vimdiff which works pretty well...

thrope
A: 

Emacs has a built-in visual diff tool: M-x ediff.

JesperE
A: 

Your title mentions "Linux console" but your question mentions meld, which is a GUI application. It might help answerers if you could clarify this.

In GUI apps, meld is still pretty much the standard. It works well, it's reasonably pretty and intuitive.

If you're really limited to using the console (i.e. text-only) then apart from the diff utilities built into editors like vim and emacs you could also try the original command line utility diff. I find it very useful to use the -y option to display files side-by-side, and there are other options I've used to display "unified" diffs and to precisely set the amount of context around matched differences. If you pipe diff's output into less you can browse with fair convenience.

Carl Smotricz
Thanks Cral, the problem is not relate to limited to using the console,I'm prefer using console mode :-)
leedit
A: 

You can try ColorDiff.

yigit