mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 00:02:07 +02:00
11 lines
250 B
Markdown
11 lines
250 B
Markdown
# diffstat
|
|
|
|
> Create a histogram from the output of the `diff` command.
|
|
|
|
- Display changes in a histogram:
|
|
|
|
`diff {{file1}} {{file2}} | diffstat`
|
|
|
|
- Display inserted, deleted and modified changes as a table:
|
|
|
|
`diff {{file1}} {{file2}} | diffstat -t`
|