Merge two files on awk/shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Merge two files on awk/shell
# 1  
Old 11-16-2015
Merge two files on awk/shell

Hi,
i have two files like these:
FILE 1
Code:
00:0f:35:1b:0c:00  1402691094.750049000 00:0f:35:1b:0c:00  1402691087.474893000
44:d3:ca:fd:a2:08 1402691091.865127000 
30:e4:db:c1:df:de  1402691090.192464000

FILE 2_
Code:
00:0F:35 Cisco Systems, Inc
30:E4:DB Cisco Systems, Inc


I need a file 3, that is the result of merge two files(with awk or shell),
and if in file1 there is the first column on file 2(00:0F:35 or 30:E4:DB)
, add the name of the mac (Cisco Systems, Inc) on file 3 with this output:
Code:
00:0f:35:1b:0c:00 Cisco Systems, Inc 1402691094.750049000 00:0f:35:1b:0c:00 Cisco Systems, Inc 1402691087.474893000
44:d3:ca:fd:a2:08 1402691091.865127000 
 30:e4:db:c1:df:de Cisco Systems, Inc 1402691090.192464000

Thanks a lot

Moderator's Comments:
Mod Comment edit by bakunin: please use CODE-tags!

Last edited by bakunin; 11-16-2015 at 09:08 AM..
# 2  
Old 11-16-2015
Any attempt from your side?
# 3  
Old 11-16-2015
I have proved with some like this:
Code:
'NR==FNR {h[$1] = $2; next} {print $1,$2,$3,h[$1]}' file2 file1 > file3

but it doesnt work

Moderator's Comments:
Mod Comment edit by bakunin: again, please use CODE-tags! Furthermore, please provide complete commands, not arbitrary snippets! One could guess you are referring to an awk program, but it might help to remove all doubt and specify what you use, no?

Last edited by bakunin; 11-16-2015 at 09:10 AM..
# 4  
Old 11-16-2015
Please use code tags as required by forum rules!

Above can't work as it would require different field separators. What ARE the FS of those files?
# 5  
Old 11-16-2015
Quote:
Originally Posted by RudiC
Please use code tags as required by forum rules!

Above can't work as it would require different field separators. What ARE the FS of those files?
The first field of the fiel 1 es the first column(for example 00:0f:35:1b:0c:00)
and we need to merge with the first field of file 2 that is like 00:0F:35
# 6  
Old 11-16-2015
Quote:
Originally Posted by bertiko
The first field of the fiel 1 es the first column(for example 00:0f:35:1b:0c:00)
and we need to merge with the first field of file 2 that is like 00:0F:35
That did NOT answer the question. If you use the default FS (space, <TAB>), field 2 in your file 2 is "Cisco" - that's part of why your script fails.
And, your written spec doesn't match your samples - in there, field 3 will be used for the match as well.
Howsoever, based on what we know so far, try
Code:
awk '
NR==FNR         {X = tolower($1)
                 sub ("^" $1 FS, "")
                 h[X] = $0
                 next
                }
                {X = $1
                 sub (/:[^:]*:[^:]*:[^:]*$/, "", X)
                 if (X in h) $1 = $1 FS h[X]
                }
1
' file2 file1
00:0f:35:1b:0c:00 Cisco Systems, Inc 1402691094.750049000 00:0f:35:1b:0c:00 1402691087.474893000
44:d3:ca:fd:a2:08 1402691091.865127000
30:e4:db:c1:df:de Cisco Systems, Inc 1402691090.192464000

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Merge columns from two files using awk

I have two csv files : say a.csv, b.csv a.csv looks like this : property1,property2,100 property3,property4,200 In a.csv, the combination of column1 and column2 will be unique b.csv looks like this property1,property2, 300, t1 property1,property2, 400,t2 property3, property4,800,t1... (2 Replies)
Discussion started by: Lakshmikumari
2 Replies

2. Shell Programming and Scripting

awk merge two files

file1 AAA3:WWW1:DDD1:XXX8:DDD2:XXX9 AAA6:WWW2:FFF1:XXX130:FFF1:XXX104:FFF1:XXX16 AAA7:WWW3:ZZZ1:XXX4:ZZZ2:XXX5:ZZZ3:XXX6:ZZZ4:XXX7file2 XXX8:EEE1:EEE2 XXX9:KKK1:KKK2 XXX130:OOO1:OOO2 XXX104:PPP1:PPP2 XXX16:RRR1:RRR1 XXX4:UUU1:UUU2 XXX5:III1:III2 XXX7:JJJ1:JJJ2Result... (2 Replies)
Discussion started by: vikus
2 Replies

3. Shell Programming and Scripting

awk match and merge with 2 files

Dear Awk experts! I have been trying to get a one liner for a match and merge operation, but having difficulties as I'm an awk newb. I always get stuck on the match and merge with 2 files. I have 2 files as follows: File 1: field 1,field 2,field 3,field 4,field 5,field 6,field 7,field... (6 Replies)
Discussion started by: landossa
6 Replies

4. Shell Programming and Scripting

merge two files with awk

I have two file like follows. I want to merge them according the first field of file1. The separator of file1 is tab, while the second one is ",". I tried some code, but can't get the results. File1: AABB 6072 28 5922 BBCC 316 147 162 CCDD 907 71 231 File2: CCDD,hTRBV12-4,hTRBJ2-3,319895... (7 Replies)
Discussion started by: xshang
7 Replies

5. Shell Programming and Scripting

Merge files using AWK

I want to merge data from 2nd file to 1st file based on 1st column File1 ==== data1,12,comp1 data1,13,comp2 data3,14,, File2 ==== data1,11,host1,lit data2,11,host2,lit3 data3,11,host3,lit4 Required Ouput (5 Replies)
Discussion started by: greycells
5 Replies

6. Shell Programming and Scripting

Merge 2 csv files with awk

I have 2 files pipe delimted and want to merge them based on a key e.g file 1 123$aaa$yyy$zzz 345$xab$yzy$zyz 456$sss$ttt$foo 799$aaa$ggg$dee file 2 123$hhh 345$ddd 456$xxx 888$zzz so if the key is the first field, and the result should be the common key between file 1 and 2 (6 Replies)
Discussion started by: loloAix
6 Replies

7. Shell Programming and Scripting

merge two files into one file use awk

Hi, guys. I have one question: I have two files: passwd and shadow (the number of records in these files are not equal)the contents of them are below: passwd: ************** ftp:x:24:24: sshd:x:71:65: uucp:x:10:14: brownj:x:5005:1000: sherrys: x :5006:1000: ... ************* ... (2 Replies)
Discussion started by: daikeyang
2 Replies

8. Shell Programming and Scripting

Merge files of differrent size with one field common in both files using awk

hi, i am facing a problem in merging two files using awk, the problem is as stated below, file1: A|B|C|D|E|F|G|H|I|1 M|N|O|P|Q|R|S|T|U|2 AA|BB|CC|DD|EE|FF|GG|HH|II|1 .... .... .... file2 : 1|Mn|op|qr (2 Replies)
Discussion started by: shashi1982
2 Replies

9. Shell Programming and Scripting

merge two files using awk

Hi Guys, I wonder whether is possible to merge two files using awk. I have two files one with 7 columns and another one with 9 columns and the first column on both files is identical so will be my key to merge the files. Any ideas.Thanks in advance. Harby. (2 Replies)
Discussion started by: hariza
2 Replies

10. Shell Programming and Scripting

shell script to merge files

Can anybody help me out with this problem " a shell program that takes one or any number of file names as input; sorts the lines of each file in ascending order and displays the non blank lines of each sorted file and merge them as one combined sorted file. The program generates an error... (1 Reply)
Discussion started by: arya
1 Replies
Login or Register to Ask a Question