1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/meld.md
4G3NT 062b88d05a
pages/*: prefer brand name and add backticks around commands (#10422)
* pages/*: prefer brand name and add backticks around commands

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-06-27 23:57:35 +02:00

28 lines
605 B
Markdown

# meld
> Graphical diffing and merging tool.
> More information: <https://meldmerge.org/>.
- 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}}`