Suppose I have two lists of numbers in files f1, f2, each number one per line. I want to see how many numbers in the first list are not in the second and vice versa. Currently I am using grep -f f2 -v f1 and then repeating this using a shell script. This is pretty slow (quadratic time hurts). Is there a nicer way of doing this?
|
1
|
|||||||||
|
|
|
I like 'comm' for this sort of thing. (files need to be sorted.)
|
||
|
|
Couldn't you just put each number in a single line and then |
||||||||
|
|
|
In the special case where one file is a subset of the other, the following:
would list the lines only in the larger file. And of course piping to However, that isn't exactly what you described. This one-liner serves my particular needs often, but I'd love to see a more general solution. |
||
|
|
