Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two unix files with numeric values only such as :

File 1 :
12345
23456
234578

File 2 :
2387
12345
23456
767888

I need to separate uncommon values from two files such as : 234578, 2387, 767888. And direct into one separate file using shell script. Please advise.

share|improve this question

2 Answers

up vote 0 down vote accepted

sort fileA fileB |uniq -u >fileC

share|improve this answer
really helpful :-) – ABeri Nov 9 '10 at 7:48

comm can be used to find the lines in the files unique to one of them.

sort file1.txt > file1.srt
sort file2.txt > file2.srt
comm -2 -3 file1.srt file2.srt > only1.txt
comm -1 -3 file1.srt file2.srt > only2.txt
share|improve this answer
add to the above: sort -u only1.txt only2.txt to get all the unique items. :) – JimR Nov 9 '10 at 7:16
Also, we can combine two files : cat only1.txt only2.txt > uniq :-) – ABeri Nov 9 '10 at 7:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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