1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 16:04:55 +02:00

Merge pull request #796 from oxguy3/patch-10

cmp: add page
This commit is contained in:
Leandro Ostera 2016-02-23 11:59:09 +01:00
commit 848cea183e

11
pages/common/cmp.md Normal file
View file

@ -0,0 +1,11 @@
# cmp
> Compare two files.
- Find the byte number and line number of the first difference between the files:
`cmp {{file1}} {{file2}}`
- Find the byte number and differing bytes of every difference:
`cmp -l {{file1}} {{file2}}`