1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/diff3.md

13 lines
350 B
Markdown
Raw Normal View History

2018-10-18 10:47:31 -03:00
# diff3
> Compare three files line by line.
> More information: <https://www.gnu.org/software/diffutils/manual/html_node/Invoking-diff3.html>.
2018-10-18 10:47:31 -03:00
- Compare files:
`diff3 {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}`
2018-10-18 10:47:31 -03:00
- Show all changes, outlining conflicts:
`diff3 {{[-A|--show-all]}} {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}`