vote up 5 vote down star

I'm sure I once found a unix command which could print the common lines from two or more files, does anyone know its name? It was much simpler than diff.

flag

65% accept rate

2 Answers

vote up 6 vote down check

The command you are seeking is comm.

link|flag
vote up 7 vote down

Maybe you mean comm ?

Compare sorted files FILE1 and FILE2 line by line.

With no options, produce three-column output. Column one contains lines unique to FILE1, column two contains lines unique to FILE2, and column three contains lines common to both files.

The secret in finding these information are the info pages. For GNU programs, they are much more detailed than their man-pages. Try info coreutils and it will list you all the small useful utils.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.