1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-30 18:15:28 +02:00

cmp: add page

This commit is contained in:
Hayden Schiff 2016-02-22 20:29:35 -05:00
parent c0d0e38c6e
commit eb5d016e4a

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}}`