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/diff.md

29 lines
789 B
Markdown
Raw Normal View History

2014-02-02 13:26:10 +01:00
# diff
> Compare files and directories.
> More information: <https://man7.org/linux/man-pages/man1/diff.1.html>.
2014-02-02 13:26:10 +01:00
- Compare files (lists changes to turn `old_file` into `new_file`):
2014-02-02 13:26:10 +01:00
`diff {{old_file}} {{new_file}}`
2014-02-02 13:26:10 +01:00
- Compare files, ignoring white spaces:
2014-02-02 13:26:10 +01:00
`diff -w {{old_file}} {{new_file}}`
2014-02-02 13:26:10 +01:00
- Compare files, showing the differences side by side:
2014-02-02 13:26:10 +01:00
`diff -y {{old_file}} {{new_file}}`
2014-02-02 13:26:10 +01:00
- Compare files, showing the differences in unified format (as used by `git diff`):
`diff -u {{old_file}} {{new_file}}`
- Compare directories recursively (shows names for differing files/directories as well as changes made to files):
2014-02-02 13:26:10 +01:00
`diff -r {{old_directory}} {{new_directory}}`
2014-02-02 13:26:10 +01:00
- Compare directories, only showing the names of files that differ:
2014-02-02 13:26:10 +01:00
`diff -rq {{old_directory}} {{new_directory}}`