Cmp (Unix)


cmp is a shell command that compares two files of any type and reports differences. By default, it outputs nothing if the files match. If they differ, it reports the byte and line number of the first difference. The exit code can be used programmatically since it is 0 if the files match, 1 if the files differ or 2 if comparison fails.
The command is available on Unix-like systems, OS-9, IBM i and Windows. The command first appeared in Version 1 Unix. It is part of the X/Open Portability Guide since issue 2 of 1987. It was inherited into the first version of POSIX.1 and the Single Unix Specification. The implementation in GNU coreutils was written by Torbjorn Granlund and David MacKenzie.

Use

Command line options include:
OptionDescriptionUnixPlan 9InfernoFreeBSDLinux
Print the differing bytes; display control bytes as a followed by a letter of the alphabet and precede bytes that have the high bit set with
Do not follow symbolic links
Skip the first SKIP bytes of input
Skip the first SKIP1 bytes of FILE1 and the first SKIP2 bytes of FILE2
Print the byte numbers and values of all differing bytes, instead of the default info; also, print the EOF message if one file is shorter than the other
Print the line number of the first differing byte
Compare at most LIMIT bytes
Print nothing; yield exit status only
Text mode where the files are opened in text mode and translated to the CCSID of the job before comparing byte for byte
Print version info
Like -l but prints in hexadecimal and using zero as index for the first byte in the files
For regular files, compare file sizes first, and fail if they are not equal
Print command-line help info

Operands that are byte counts are decimal by default, but may be preceded by for octal and for hexadecimal.
A byte count can be followed by a suffix to specify a multiple of that count; in this case an omitted integer is understood to be 1. A bare size letter, or one followed by , specifies a multiple using powers of 1024. A size letter followed by specifies powers of 1000 instead. For example, and are equivalent to , whereas is equivalent to ''. This notation is upward compatible with the SI prefixes for decimal multiples and with the IEC 60027-2 prefixes for binary multiples.