in reply to Comparison Of Files
comm -23 newsite1.txt newsite2.txt will print lines that are only in newsite1.txt, and
comm -13 newsite1.txt newsite2.txt will print lines that are only in newsite2.txt
comm -3 newsite1.txt newsite2.txt will print lines that in are only in newsite1.txt in the first column, and lines that are only in newsite2.txt in the second column.
|
|---|