PROGRAM
	compare: compare files for equality
USAGE
	compare file1 file2
DESCRIPTION
	compare performs a line-by-line comparison of file1 and file2, printing each
	pair of differing lines, preceded by a line containing the offending line
	number and a colon. If the files are identical, no output is produced. If one
	file is a prefix of the other, compare reports end of file on the shorter
	file.
EXAMPLE
	C:\>compare old new
BUGS
	compare can produce voluminous output for small differences.