Joining 3 fields of a fiile


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Joining 3 fields of a fiile
# 8  
Old 12-31-2007
awk

Hi,

Awk should be ok for you.

a:
Code:
20071121|12|Mohit|DAV
20071222|13|Dev|MRSD
20071011|14|Rajan|ST
20071011|15|Lali|OTH

b:
Code:
12|KKP|Pun|Mohit
14|FDK|Pas|Abhi
15|SAD|Hp|Lali

out:
Code:
12|Mohit|20071121|DAV|KKP|Pun
15|Lali|20071011|OTH|SAD|Hp

code:
Code:
nawk 'BEGIN{FS="|"}
NR==FNR {
temp1=sprintf("%s|%s",$2,$3)
t[temp1]=sprintf("%s|%s|%s|%s",$2,$3,$1,$4)}

NR!=FNR {
temp2=sprintf("%s|%s",$1,$4)
if (t[temp2])
printf("%s|%s|%s\n",t[temp2],$2,$3)
}
' a b

# 9  
Old 01-02-2008
how to use "where" condition?

if i want to get the row in which a particular condition is req,
than how can i do it?
Like in the above given file if i want to extract only the row where second column =12 in the first file.
Please help me as soon as possible.
Thanks
# 10  
Old 01-04-2008
Code:
column_f1=2
value=12

awk 'FNR == NR && $'${column_f1}' == '${value}' { n=FR;print;break }
/'${value}'/ FNR == n {print}' FS=\| f1 f2
20071121|12|Mohit|DAV

Anyway , you can achieve your goal using join.
# 11  
Old 06-17-2008
Could you please explain the code?

Hi,

I checked your code and it works great, but I can understand it very well...


nawk 'BEGIN{FS="|"}
NR==FNR { <<< what does this section do? I thought it meant when the combination of fields is found then do whatever.... but the print is in the next section Smilie
temp1=sprintf("%s|%s",$2,$3)
t[temp1]=sprintf("%s|%s|%s|%s",$2,$3,$1,$4)}

NR!=FNR {
temp2=sprintf("%s|%s",$1,$4)
if (t[temp2])
printf("%s|%s|%s\n",t[temp2],$2,$3)
}
' a b

I'm changing some values to try to understand it better but I'm still confused...

Thanks,

Quote:
Originally Posted by summer_cherry
Hi,

Awk should be ok for you.

a:
Code:
20071121|12|Mohit|DAV
20071222|13|Dev|MRSD
20071011|14|Rajan|ST
20071011|15|Lali|OTH

b:
Code:
12|KKP|Pun|Mohit
14|FDK|Pas|Abhi
15|SAD|Hp|Lali

out:
Code:
12|Mohit|20071121|DAV|KKP|Pun
15|Lali|20071011|OTH|SAD|Hp

code:
Code:
nawk 'BEGIN{FS="|"}
NR==FNR {
temp1=sprintf("%s|%s",$2,$3)
t[temp1]=sprintf("%s|%s|%s|%s",$2,$3,$1,$4)}

NR!=FNR {
temp2=sprintf("%s|%s",$1,$4)
if (t[temp2])
printf("%s|%s|%s\n",t[temp2],$2,$3)
}
' a b

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Is there a UNIX command that can compare fields of files with differing number of fields?

Hi, Below are the sample files. x.txt is from an Excel file that is a list of users from Windows and y.txt is a list of database account. $ head -500 x.txt y.txt ==> x.txt <== TEST01 APP_USER_PROFILE USER03 APP_USER_PROFILE TEST02 APP_USER_EXP_PROFILE TEST04 APP_USER_PROFILE USER01 ... (3 Replies)
Discussion started by: newbie_01
3 Replies

2. Shell Programming and Scripting

Print . in blank fields to prevent fields from shifting

The below code works great, kindly provided by @Don Cragun, the lines in bold print the current output. Since some of the fields printed can be blank some of the fields are shifted. I can not seem too add . to the blank fields like in the desired output. Basically, if there is nothing in the field... (10 Replies)
Discussion started by: cmccabe
10 Replies

3. Shell Programming and Scripting

awk sort based on difference of fields and print all fields

Hi I have a file as below <field1> <field2> <field3> ... <field_num1> <field_num2> Trying to sort based on difference of <field_num1> and <field_num2> in desceding order and print all fields. I tried this and it doesn't sort on the difference field .. Appreciate your help. cat... (9 Replies)
Discussion started by: newstart
9 Replies

4. Shell Programming and Scripting

awk - compare 1st 15 fields of record with 20 fields

I'm trying to compare 2 files for differences in a selct number of fields. When differnces are found it will write the whole record of the second file including appending '|C' out to a delta file. Each record will have 20 fields, but only want to do comparison of 1st 15 fields. The 1st field of... (7 Replies)
Discussion started by: sljnk
7 Replies

5. Shell Programming and Scripting

How to print 1st field and last 2 fields together and the rest of the fields after it using awk?

Hi experts, I need to print the first field first then last two fields should come next and then i need to print rest of the fields. Input : a1,abc,jsd,fhf,fkk,b1,b2 a2,acb,dfg,ghj,b3,c4 a3,djf,wdjg,fkg,dff,ggk,d4,d5 Expected output: a1,b1,b2,abc,jsd,fhf,fkk... (6 Replies)
Discussion started by: 100bees
6 Replies

6. Shell Programming and Scripting

Join fields comparing 4 fields using awk

Hi All, I am looking for an awk script to do the following Join the fields together only if the first 4 fields are same. Can it be done with join function in awk?? a,b,c,d,8,,, a,b,c,d,,7,, a,b,c,d,,,9, a,b,p,e,8,,, a.b,p,e,,9,, a,b,p,z,,,,9 a,b,p,z,,8,, desired output: ... (1 Reply)
Discussion started by: aksijain
1 Replies

7. Shell Programming and Scripting

Add fields in different files only if some fields between them match

Hi everybody (first time posting here) I have a file1 that looks like > 1,101,0.1,0.1 1,26,0.1,0.1 1,3,0.1,0.1 1,97,0.5,0.5 1,98,8.1,0.218919 1,99,6.2,0.248 2,101,0.1,0.1 2,24,3.1,0.147619 2,25,23.5,0.559524 2,26,34,0.723404with 762 lines.. I have another 'similar' file2 > ... (10 Replies)
Discussion started by: murpholinox
10 Replies

8. Shell Programming and Scripting

awk sed cut? to rearrange random number of fields into 3 fields

I'm working on formatting some attendance data to meet a vendors requirements to upload to their system. With some help on the forums here, I have the data close. But they've since changed what they want. The vendor wants me to submit three fields to them. Field 1 is the studentid field,... (4 Replies)
Discussion started by: axo959
4 Replies

9. Shell Programming and Scripting

Joining two files based on columns/fields

I've got two files, File1 and File2 File 1 has got combination of col1, col2 and col3 which comes on file2 as well, file2 does not get col4. Now based on col1, col2 and col3, I would like to get col4 from file1 and all the columns from file2 in a new file Any ideas? File1 ------ Col1 col2... (11 Replies)
Discussion started by: rudoraj
11 Replies

10. Shell Programming and Scripting

combining fields in two text fields

Can someone tell me how to do this using sed, awk, or any other basic shell scripting? Basically I have two text files with the following contained in each file: File A: a b c d e f g h i File B: 1 2 3 I want the final outcome to look like this: a b c 1 d e f 2 g h i 3 How... (3 Replies)
Discussion started by: shocker
3 Replies
Login or Register to Ask a Question