Comp
Compares the contents of two files or sets of files byte by byte. Comp can compare files on the same drive or on different drives, and in the same directory or in different directories. When comp compares the files, it displays their locations and file names. Used without parameters, comp prompts you to enter the files to compare.
Syntax
comp [data1] [data2] [/d] [/a] [/l] [/n=number] [/c]
Parameters
data1 : Specifies the location and name of the first file or set of files you want to compare. You can use wildcard characters (* and ?) to specify multiple files.
data2 : Specifies the location and name of the second file or set of files you want to compare. You can use wildcard characters (* and ?) to specify multiple files.
/d : Displays differences in decimal format. (The default format is hexadecimal.)
/a : Displays differences as characters.
/l : Displays the number of the line on which a difference occurs, instead of displaying the byte offset.
/n= number : Compares the first number of lines of both files, even if the files are different sizes.
/c : Performs a comparison that is not case-sensitive.
/? : Displays help at the command prompt.
Remarks
Comparing files with the same names
The files that you compare can have the same file name, provided they are in different directories or on different drives. If you do not specify a file name for data2, the default file name for data2 is the same as the file name in data1. You can use wildcard characters (that is, * and ?) to specify file names.
Special cases for data1 and data2
If you omit necessary components of either data1 or data2 or if you omit data2, comp prompts you for the missing information. If data1 contains only a drive letter or a directory name with no file name, comp compares all of the files in the specified directory to the file specified in data2. If data2 contains only a drive letter or a directory name, the default file name for data2 is the same as that in data1.
How the comp command identifies mismatching information
During the comparison, comp displays messages to identify the locations of unequal information in the two files. Each message indicates the offset memory address of the unequal bytes and the contents of the bytes themselves (that is, in hexadecimal notation unless you specify the /a or /d command-line option). The message appears in the following format:
Compare error at OFFSET xxxxxxxx
file1 = xx
file2 = xx
After 10 unequal comparisons, comp stops comparing the files and displays the following message:
10 Mismatches - ending compare
Comparing files of different sizes
You cannot compare files of different sizes unless you specify the /n command-line option. If the file sizes are different, comp displays the following message:
Files are different sizes
Compare more files (Y/N)?
Press Y to compare another pair of files. Press N to stop the comp command.
If you press Y in response to the prompt, comp includes any command-line options you specified on the command line in every comparison it makes, until you press N or retype the command.
When comparing files of different sizes, use the /n command-line option to compare only the first portion of each file.
Comparing files sequentially
If you use wildcard characters (* and ?) to specify multiple files, comp finds the first file matching data1 and compares it with the corresponding file in data2, if it exists. The comp command reports the results of the comparison, and then does the same for each file matching data1. When finished, comp displays the following message:
Compare more files (Y/N)?
To compare more files, press Y. The comp command prompts you for the locations and names of the new files. To stop the comparisons, press N. When you press Y, comp prompts you for command-line options to use. If you don't specify any command-line options, comp uses the ones you specified before.
If comp cannot find the files
If comp cannot find the file(s) you specify, it prompts you with a message to determine whether you want to compare more files.
Examples
To compare the contents of the directory C:\Reports with the backup directory \\Sales\Backup\April, type:
comp c:\reports \\sales\backup\april
To compare the first ten lines of the text files in the \Invoice directory and display the result in decimal format, type:
comp \invoice\*.txt \invoice\backup\*.txt /n=10 /d
Formatting legend
Format |
Meaning |
---|---|
Italic |
Information that the user must supply |
Bold |
Elements that the user must type exactly as shown |
Ellipsis (...) |
Parameter that can be repeated several times in a command line |
Between brackets ([]) |
Optional items |
Between braces ({}); choices separated by pipe (|). Example: {even|odd} |
Set of choices from which the user must choose only one |
Courier font |
Code or program output |