Goal: To combine the data from two files into one file.
File1 = 11 fields, the first field is the unique key
File2 = 2 fields, the first field is the unique key
What I want to do is match File2:column1 with File1:column1 and if it matches, to add the data from File2:column2 to the matching line in File1 (in essence, creating an 12th column).
Field delimiter = pipe (|)
Sample data from File1:
3065462|245|1|Z682.4 .S89 B33 2007|3531301|0|10/20/2009|3531301|LIBR|CENTRAL|Complete.
3066405|245|1|jlk|3532264|0|10/20/2009|3532264|LIBR|CENTRAL|Energy.
Sample data from File2:
3065462|Westport, Conn. ; London : Libraries Unlimited, 2007.
3066405|Washington : U.S. Govt. Print. Off., 1976.
Desired output:
3065462|245|1|Z682.4 .S89 B33 2007|3531301|0|10/20/2009|3531301|LIBR|CENTRAL|Complete.|Westport, Conn. ; London : Libraries Unlimited, 2007.
3066405|245|1|jlk|3532264|0|10/20/2009|3532264|LIBR|CENTRAL|Energy.|Washington : U.S. Govt. Print. Off., 1976.
I've tried this, with no luck:
I've also tried changing $1 to $0, but that didn't work either. I've actually tried several things over the past several days, but either I get nothing or I get some kind of awk error:
awk: syntax error near line 4
awk: illegal statement near line 4
awk: syntax error near line 13
awk: bailing out near line 13
(from this script -
./test.awk resultsp resultst)
Last edited by jmcgranahan; 10-22-2009 at 12:22 AM..
Hi all,
Can you please help me to find out that where is the problem in my script or either my way of writing the shell command on the prompt is not right? Actually, I want to compare the second column "$1" of the file "t1" with all the columns of second file "t2", if there is a match then the... (2 Replies)
so have file1 like this:
joe 123
jane 456
and then file2 like this:
123 left right
456 up down
joe ding dong
jane flip flop
what I need to do is compare col1 and col2 in file1 with col1 in file2 and generate a new file that has lines like this:
joe 123 ding dong left right
jane... (11 Replies)
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)
Hi,
I'm a new user in awk and i'm trying to compare two files to create a third one if some values match in both files.
The first file has this content:
s 45.960746365 _21_ AGT 2490 [21:0 22:0
s 45.980418496 _21_ AGT 2491 [21:0 22:0
s 46.000090627 _21_ AGT 2492 [21:0 22:0
s 47.906552206... (2 Replies)
i have one file say file1 having many records.Each record contains 2000 characters.i have to compare 192-200 (stored as name)characters in this file from other file say file2 having name stored in 1-9 characters.
after comparing i have to print the record from file1 in another file say file3 ... (3 Replies)
hit brick wall while trying to knock up a script that will take values from the "lookup" file and look it up in the "target" file and return values that dont appear in "target" but do in "lookup".
just knocked up something using bits from previous threads but theres gotta be something wrong... (13 Replies)
I've been trying to use awk to compare two files that have pretty much the same data in apart from certain lines where in one file a fields value has changed. I want to print the line from the first file and the changed line from the second file.
At the moment, all I can get it to do is print the... (6 Replies)
Hi,
I have 2 text files n1 and n2.
cat n1 :
--------
1234567890
4444444444
cat n2 :
---------
1234567890
4444444444
7777777777
8888888888
they are some sample records. File n1 contains some lookup records, whereas file n2 contains some transaction records. I need to get the... (2 Replies)
Hi All,
a new bie to awk,
How to compare substring of col1,file 1 with
col2file2 and get file1contents+col3file2 as output.
file1
-----
kumarfghh,23,12000,5000
rajakumar,24,14000,2500
rajeshchauhan,25,16000,2600
manoj,26,17000,2300
file 2
--------
123,kumar,US,
123,sukumar,UK... (4 Replies)