vm: fix potential null deref
[minix.git] / man / man1 / cmp.1
blob6ebbae76ab06907a54e6f040a981288d36f86bcb
1 .TH CMP 1
2 .SH NAME
3 cmp \- compare two files
4 .SH SYNOPSIS
5 \fBcmp\fR [\fB\-ls\fR] \fIfile1 file2\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-l
20 # Loud mode. Print bytes that differ (in octal)
21 .TP 5
22 .B \-s
23 # Silent mode.  Print nothing, just return exit status
24 .SH EXAMPLES
25 .TP 20
26 .B cmp file1 file2
27 # Tell whether the files are the same
28 .TP 20
29 .B cmp \-l file1 file2
30 # Print all corresponding bytes that differ
31 .SH DESCRIPTION
32 .PP
33 Two files are compared.
34 If they are identical, exit status 0 is returned.
35 If they differ, exit status 1 is returned.
36 If the files cannot be opened, exit status 2 is returned.
37 If one of the file arguments is \-, then
38 \fIstdin\fR is compared to 
39 the other file.
40 .SH "SEE ALSO"
41 .BR comm (1),
42 .BR diff (1).