3

I'm searching a GUI [or CLI] tool that can produce output like the Total Commander compare content function does! For example:

Screenshot of Total Commander

Are there any that do that? It's a very handy tool and I miss it

Michael Mrozek
  • 93,103
  • 40
  • 240
  • 233
LanceBaynes
  • 40,135
  • 97
  • 255
  • 351

4 Answers4

1

diff -y?

Or if what you're really after is color output try colordiff.

bahamat
  • 39,666
  • 4
  • 75
  • 104
1
  • xxdiff
  • gtkdiff
  • tkdiff

come to my mind.

user unknown
  • 10,482
1

Any diff utility can do this for you. My personal favorite GUI tool is meld.

If you like the command line, but want a paged side-by-side comparison, try:

diff -y | less

0

I like Meld. (See also its Github repository).

On Debian and derived systems, you can install it with:

sudo apt install meld

There are also MacOS and even Windows versions available.

On MacOS, it can be installed with Homebrew, or using "a fork of Meld packaged and bundled for OSX".

mivk
  • 3,596