![]() |
| ||
| opening multiples files in awk? I'm trying to load some data I download from my real estate system. They have split out the features in a separate file. Here are my 2 files: File1.txt (~25,000 records) |123|Main|St|City|State|1701,1708|800,801|MORE|MORE|ETC| |987|Bailey|Dr|City|State|1702,1708,1717|800,801|MORE|MORE|ETC| File2.txt (~1,300 records) |RES|800|City Sewer| |RES|801|City Water| |RES|1701|1 Car| |RES|1702|2 Car| |CND|1702|2 Car| |RES|1708|Door Opener| |RES|1717|Side Load| I need to do a couple of thing which I have done with awk. Combine fields 1, 2, and 3 and extract 4, 5, 6, and 7 for mysql insert. Problem is I need to change the values of field 6 and 7 to their matching value in file2.txt So my insert looks like this now INSERT INTO DB_TABLE VALUES ('123 Main St', 'City', 'State', '1701,1708', '800,801'); but it needs to be: INSERT INTO DB_TABLE VALUES ('123 Main St', 'City', 'State', '1 Car, Door Opener', 'City Sewer, City Water'); I think I can do it easily with a multi-dim array but I don't know how to read in file2 in the same awk. I could load these into the database and do it but I have about 25,000 records in file1.txt nightly and I think it would be much faster just do this in some shell scripting. Any ideas? I guess another option would be python, perl, c, etc. I thought maybe sed on the output file, but I still have 2 files to read. Thanks, Chris |
| ||
| Re: opening multiples files in awk? Hey there, here's a quick, ugly-looking-but-easy-to-understand (I hope ;) bit of shell script. I didn't format the output exactly, but you should be able to do that simply by modifying the end of each line that seeds the newg and newh variable. The script is called c (below): Using your two files, which I'm calling "a" and "b" Quote:
#!/bin/bash It produces this output: Quote:
, Mike |
| All times are GMT -4. The time now is 6:21 pm. |
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC