HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

meld — Graphical diffing and merging tool. More information: <https://manned.org/meld>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
graphicalcommandmergingandmeldclitooldiffing

Problem

How to use the meld command: Graphical diffing and merging tool. More information: <https://manned.org/meld>.

Solution

meld — Graphical diffing and merging tool. More information: <https://manned.org/meld>.

Start meld:
meld


Compare 2 files:
meld {{path/to/file_1}} {{path/to/file_2}}


Compare 2 directories:
meld {{path/to/directory_1}} {{path/to/directory_2}}


Compare 3 files:
meld {{path/to/file_1}} {{path/to/file_2}} {{path/to/file_3}}


Open a comparison as a new tab in a pre-existing meld instance:
meld --newtab {{path/to/file_1}} {{path/to/file_2}}


Compare multiple sets of files:
meld --diff {{path/to/file_1}} {{path/to/file_2}} --diff {{path/to/file_3}} {{path/to/file_4}}

Code Snippets

Start `meld`

meld

Compare 2 files

meld {{path/to/file_1}} {{path/to/file_2}}

Compare 2 directories

meld {{path/to/directory_1}} {{path/to/directory_2}}

Compare 3 files

meld {{path/to/file_1}} {{path/to/file_2}} {{path/to/file_3}}

Open a comparison as a new tab in a pre-existing meld instance

meld --newtab {{path/to/file_1}} {{path/to/file_2}}

Context

tldr-pages: common/meld

Revisions (0)

No revisions yet.