Sponsored Content
Full Discussion: Comparing 2 files
Top Forums Shell Programming and Scripting Comparing 2 files Post 302785899 by nua7 on Tuesday 26th of March 2013 02:04:39 PM
Old 03-26-2013
Comparing 2 files

Hi,
I have two files in the following format.
File 1
Code:
S00002583|NORFO|0002.20|MR|015542324A||BR|STD|201206|015542324A||E
S00004144|MIDDL|0014.90|MR|017120472D||VR|STD|201206|017120472D||E
S00005307|PLYMO|0002.20|MR|026187410A||P|STD|201206|026187410A||E
S00006040|SUFFO|0002.20|MR|012227071A||R|STD|201206|012227071A||E
S00017646|ESSEX|0009.60|MR|019036684A||BR|STD|201206|019036684A||E
S00019378|MIDDL|0013.40|MR|032072554A||VR|STD|201206|032072554A||E
S00025106|SUFFO|0009.60|MR|030201632A||R|STD|201206|030201632A||E
S00026461|MIDDL|-0006.10|MR|028447503A||R3|STD|201106|028447503A||E
S00026462|MIDDL|-0006.10|MR|028447502A||R3|STD|201107|028447502A||E
S00029844|ESSEX|0002.20|MR|030228184A||VR|STD|201206|030228184A||E
S00030343|ESSEX|0002.20|MR|033185658B||R|STD|201206|033185658B||E
S00037588|ESSEX|0007.50|MR|016241003A||R|STD|201206|016241003A||E
S00046838|MIDDL|0002.20|MR|025220396A||RK|STD|201206|025220396A||E
S00046948|PLYMO|0002.20|MR|012228991A||P|STD|201206|012228991A||E
S00047201|ESSEX|0002.20|MR|030228313A||R|STD|201206|030228313A||E
S00047205|MIDDL|-0007.30|MR|033220633A||P|STD|200907|033220633A||E
S00047785|MIDDL|0014.90|MR|026243695A||R|STD|201206|026243695A||E
S00048005|MIDDL|-0017.10|MR|022078063A||VR|STD|201205|022078063A||E
S00050356|ESSEX|0009.60|MR|200223079A||BR|STD|201206|200223079A||E
S00050497|ESSEX|0002.20|MR|024229648A||VR|STD|201206|024229648A||E
S00051590|NORFO|0009.60|MR|016242468A||R|STD|201206|016242468A||E

File 2 :
Code:
S00001006|0|20120731|32|MR|201207|E
S00001023|0|20090731|0|MR|200907|E
S00001028|0|20110131|0|MR|201101|E
S00001034|0|20110131|0|MR|201101|E
S00001042|0|20090431|0|MR|200904|E
S00001044|0|20100331|0|MR|201003|E
S00001046|0|20110731|0|MR|201107|E
S00001054|0|20121031|654.1|MR|201210|E
S00001058|0|20121031|625.8|MR|201210|E
S00001149|0|20121031|409.8|MR|201210|E
S00001153|0|20121031|654.1|MR|201210|E
S00001156|0|20121031|654.1|MR|201210|E
S00001167|0|20121031|654.1|MR|201210|E
S00001173|0|20060331|117|MR|200603|E
S00001181|0|20080431|-21.5|MR|200804|E
S00001182|0|20070431|404|MR|200704|E
S00001184|0|20110631|159.9|MR|201106|E
S00001196|0|20080831|-22|MR|200808|E
S00001231|0|20111131|759.4|MR|201111|E
S00029844|0|20090731|0|MR|200907|E
S00030343|0|20110131|0|MR|201101|E
S00037588|0|20110131|0|MR|201101|E
S00046838|0|20090431|0|MR|200904|E
S00046948|0|20100331|0|MR|201003|E
S00047201|0|20110731|0|MR|201107|E
S00047205|0|20121031|654.1|MR|201210|E
S00047785|0|20121031|625.8|MR|201210|E
S00048005|0|20121031|409.8|MR|201210|E
S00050356|0|20121031|654.1|MR|201210|E
S00050497|0|20121031|654.1|MR|201210|E
S00051590|0|20121031|654.1|MR|201210|E
S00053315|0|20060331|117|MR|200603|E
S00054151|0|20080431|-21.5|MR|200804|E
S00060160|0|20070431|404|MR|200704|E
S00046948|0|20110631|159.9|MR|201106|E
S00047201|0|20080831|-22|MR|200808|E
S00037588|0|20111131|759.4|MR|201111|E

I need to compare first columns of both the files and print only matching lines from file 2.

I tried the following code but doesn't help.

Code:
awk -F "|" '{A[$1,$1]=1;next} A[$1,$1]' FILE2 FILE1 > tst2

Desired output :
Code:
S00046948|0|20110631|159.9|MR|201106|E
S00047201|0|20080831|-22|MR|200808|E
S00037588|0|20111131|759.4|MR|201111|E

Any help is appreciated.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

comparing shadow files with real files

Hi I need to compare shadow file sizes with their real file counterparts. If the shadow file size differs form the realfile size then it must send a mail. My problem is that our system has over 1600 shadowfiles in different directories, with different names. the only consistancy is the .sh file... (4 Replies)
Discussion started by: terrym
4 Replies

2. Shell Programming and Scripting

Comparing files

I have a file called X, which contains the following: 10 100 200 300 I then have file Y, which containts the following: 10 200 500 800 I want to write a script that will compare the contents of Y with the contents of X and ONLY return values in Y that does not exist in X (output... (5 Replies)
Discussion started by: soliberus
5 Replies

3. Shell Programming and Scripting

Need Help Comparing two Files

I really need help on creating a script that does the following: I have one file (File 1) with lines in the following format: Name.maf score1 score2 I have a second file (File 2) with lines in the following format: label start end Name What I need to do is compare File 1 and... (1 Reply)
Discussion started by: awknerd
1 Replies

4. Shell Programming and Scripting

Need help comparing two files and deleting some things in those files!

So I have two files: File1 pictures.txt 1.1 1.3 dance.txt 1.2 1.4 treehouse.txt 1.3 1.5 File2 pictures.txt 1.5 ref2313 1.4 ref2345 1.3 ref5432 1.2 ref4244 dance.txt 1.6 ref2342 1.5 ref2352 1.4 ref0695 1.3 ref5738 1.2 ref4948 1.1 treehouse.txt 1.6 ref8573 1.5 ref3284 1.4 ref5838... (24 Replies)
Discussion started by: linuxkid
24 Replies

5. Shell Programming and Scripting

Comparing the matches in two files using awk when both files have their own field separators

I've two files with data like below: file1.txt: AAA,Apples,123 BBB,Bananas,124 CCC,Carrot,125 file2.txt: Store1|AAA|123|11 Store2|BBB|124|23 Store3|CCC|125|57 Store4|DDD|126|38 So,the field separator in file1.txt is a comma and in file2.txt,it is | Now,the output should be... (2 Replies)
Discussion started by: asyed
2 Replies

6. UNIX for Advanced & Expert Users

How to find duplicates contents in a files by comparing other files?

Hi Guys , we have one directory ...in that directory all files will be set on each day.. files must have header ,contents ,footer.. i wants to compare the header,contents,footer ..if its same means display an error message as 'files contents same' (7 Replies)
Discussion started by: Venkatesh1
7 Replies

7. Shell Programming and Scripting

Help with comparing two files

Hi all I have to compare two file this time one is P11223 x1124 x1145 t5678 e3456 z2345 another file P11223 x s (2 Replies)
Discussion started by: manigrover
2 Replies

8. Shell Programming and Scripting

Comparing the files

Hi Friends, I have file1.txt file2.txt I tried using the diff and comm but not getting the expected output.. I want where exactly the miss match occurs. probably the field. Sourcevalue|Targetvalue|Linenumber|field 29123975|2923975|3|1 Please help. (6 Replies)
Discussion started by: i150371485
6 Replies

9. Shell Programming and Scripting

Comparing files in a directory against an array of files

I hope I can explain this correctly. I am using Bash-4.2 for my shell. I have a group of file names held in an array. I want to compare the names in this array against the names of files currently present in a directory. If the file does not exist in the directory, that is not a problem.... (5 Replies)
Discussion started by: BudMan
5 Replies

10. UNIX for Beginners Questions & Answers

Comparing two files and list the difference with common first line content of both files

I have two file as given below which shows the ACL permissions of each file. I need to compare the source file with target file and list down the difference as specified below in required output. Can someone help me on this ? Source File ************* # file: /local/test_1 # owner: own #... (4 Replies)
Discussion started by: sarathy_a35
4 Replies
All times are GMT -4. The time now is 08:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy