]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/cmp/cmp.1
libarchive: merge vendor bugfixes
[FreeBSD/FreeBSD.git] / usr.bin / cmp / cmp.1
1 .\" Copyright (c) 1987, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .\"     @(#)cmp.1       8.1 (Berkeley) 6/6/93
32 .\" $FreeBSD$
33 .\"
34 .Dd September 23, 2021
35 .Dt CMP 1
36 .Os
37 .Sh NAME
38 .Nm cmp
39 .Nd compare two files
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl l | s | x
43 .Op Fl bhz
44 .Op Fl -ignore-initial Ns Cm = Ns Ar num1 Ns Op :num2
45 .Op Fl -bytes Ns Cm = Ns Ar num
46 .Ar file1 file2
47 .Op Ar skip1 Op Ar skip2
48 .Sh DESCRIPTION
49 The
50 .Nm
51 utility compares two files of any type and writes the results
52 to the standard output.
53 By default,
54 .Nm
55 is silent if the files are the same; if they differ, the byte
56 and line number at which the first difference occurred is reported.
57 .Pp
58 Bytes and lines are numbered beginning with one.
59 .Pp
60 The following options are available:
61 .Bl -tag -width indent
62 .It Fl b , Fl -print-bytes
63 Print each byte when a difference is found.
64 .It Fl h
65 Do not follow symbolic links.
66 .It Fl i Ar num1 Ns Oo :num2 Oc , Fl -ignore-initial= Ns Ar num1 Ns Op :num2
67 Skip
68 .Ar num1
69 bytes from
70 .Ar file1 ,
71 and optionally skip
72 .Ar num2
73 bytes from
74 .Ar file2 .
75 If
76 .Ar num2
77 is not specified, then
78 .Ar num1
79 is applied for both
80 .Ar file1
81 and
82 .Ar file2 .
83 .It Fl l , Fl -verbose
84 Print the byte number (decimal) and the differing
85 byte values (octal) for each difference.
86 .It Fl n Ar num , Fl -bytes= Ns num
87 Only compare up to
88 .Ar num
89 bytes.
90 .It Fl s , Fl -silent , Fl -quiet
91 Print nothing for differing files; return exit
92 status only.
93 .It Fl x
94 Like
95 .Fl l
96 but prints in hexadecimal and using zero as index
97 for the first byte in the files.
98 .It Fl z
99 For regular files compare file sizes first, and fail the comparison if they
100 are not equal.
101 .El
102 .Pp
103 The optional arguments
104 .Ar skip1
105 and
106 .Ar skip2
107 are the byte offsets from the beginning of
108 .Ar file1
109 and
110 .Ar file2 ,
111 respectively, where the comparison will begin.
112 The offset is decimal by default, but may be expressed as a hexadecimal
113 or octal value by preceding it with a leading ``0x'' or ``0''.
114 .Pp
115 .Ar skip1
116 and
117 .Ar skip2
118 may also be specified with SI size suffixes.
119 .Sh EXIT STATUS
120 The
121 .Nm
122 utility exits with one of the following values:
123 .Bl -tag -width 4n
124 .It 0
125 The files are identical.
126 .It 1
127 The files are different; this includes the case
128 where one file is identical to the first part of
129 the other.
130 In the latter case, if the
131 .Fl s
132 option has not been specified,
133 .Nm
134 writes to standard error that EOF was reached in the shorter
135 file (before any differences were found).
136 .It >1
137 An error occurred.
138 .El
139 .Sh EXAMPLES
140 Assuming a file named
141 .Pa example.txt
142 with the following contents:
143 .Bd -literal -offset indent
144 a
145 b
146 c
147 .Ed
148 .Pp
149 Compare stdin with
150 .Pa example.txt :
151 .Bd -literal -offset indent
152 $ echo -e "a\\nb\\nc" | cmp - example.txt
153 .Ed
154 .Pp
155 Same as above but introducing a change in the third byte of stdin.
156 Show the byte number (decimal) and differing byte (octal):
157 .Bd -literal -offset indent
158 $ echo -e "a\\nR\\nc" | cmp -l - example.txt
159      3 122 142
160 .Ed
161 .Pp
162 Compare file sizes of
163 .Pa example.txt
164 and
165 .Pa /boot/loader.conf
166 and return 1 if they are not equal.
167 Note that
168 .Fl z
169 can only be used with regular files:
170 .Bd -literal -offset indent
171 $ cmp -z example.txt /boot/loader.conf
172 example.txt /boot/loader.conf differ: size
173 .Ed
174 .Pp
175 Compare stdin with
176 .Pa example.txt
177 omitting the first 4 bytes from stdin and the first 2 bytes from
178 .Pa example.txt :
179 .Bd -literal -offset indent
180 $ echo -e "a\\nR\\nb\\nc" | cmp - example.txt 4 2
181 .Ed
182 .Sh SEE ALSO
183 .Xr diff 1 ,
184 .Xr diff3 1
185 .Sh STANDARDS
186 The
187 .Nm
188 utility is expected to be
189 .St -p1003.2
190 compatible.
191 The
192 .Fl b ,
193 .Fl h ,
194 .Fl i ,
195 .Fl n ,
196 .Fl x ,
197 and
198 .Fl z
199 options are extensions to the standard.
200 .Ar skip1
201 and
202 .Ar skip2
203 arguments are extensions to the standard.
204 .Sh HISTORY
205 A
206 .Nm
207 command appeared in
208 .At v1 .
209 .Sh BUGS
210 The phrase
211 .Dq SI size suffixes
212 above refers to the traditional power of two convention, as described in
213 .Xr expand_number 3 .