Given this two files:

 $ cat A.txt     $ cat B.txt
    3           11
    5           1
    1           12
    2           3
    4           2

I want to find lines number that is in A "BUT NOT" in B. What's the unix command for it?

I tried this but seems to fail:

comm -3 <(sort -n A.txt) <(sort -n B.txt) | sed 's/\t//g' 
link|improve this question

1  
You may have good reason to use a Unix one-liner, but have you considered writing a Perl or Python script to do it? This may be quicker to write and easier to read and modify. Python has set-based operations built into the language, so in a few lines, you can achieve what you're trying to do here. – avpx Jan 29 '10 at 5:16
2  
@avpx: you're right. In Python, it's as simple as ''.join(set(open('A.txt')) - set(open('B.txt'))). – Alok Jan 29 '10 at 5:22
@Alok: That's a pretty good way to do it, certainly shorter than the one I wrote. Kudos. – avpx Jan 29 '10 at 5:25
feedback

3 Answers

up vote 7 down vote accepted
comm -2 -3 <(sort A.txt) <(sort B.txt)

should do what you want, if I understood you correctly.

Edit: Actually, comm needs the files to be sorted in lexicographical order, so you don't want -n in your sort command:

$ cat A.txt
1
4
112
$ cat B.txt
1
112
# Bad:
$ comm -2 -3 <(sort -n B.txt) <(sort -n B.txt)
4
comm: file 1 is not in sorted order
112
# OK:
$ comm -2 -3 <(sort A.txt) <(sort B.txt)
4
link|improve this answer
feedback

note that the awk solution works, but retains duplicates in A (which aren't in B); the python solution de-dupes the result

also note that comm doesn't compute a true set difference; if a line is repeated in A, and repeated fewer times in B, comm will leave the "extra" line(s) in the result:

$ cat A.txt 
120
121
122
122
$ cat B.txt 
121
122
121
$ comm -23 <(sort A.txt) <(sort B.txt)
120
122

if this behavior is undesired, use sort -u to remove duplicates (only the dupes in A matter):

$ comm -23 <(sort -u A.txt) <(sort B.txt)
120
link|improve this answer
feedback

you can try this

$ awk 'FNR==NR{a[$0];next} (!($0 in a))' B.txt A.txt
5
4
link|improve this answer
@ghostdog74: Strange how come it gives different result in my machine: 3, 5, 1, 2, 4, – neversaint Jan 29 '10 at 6:06
what OS you running? use nawk on Solaris. – ghostdog74 Jan 29 '10 at 6:52
feedback

Your Answer

 
or
required, but never shown

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