Joint two files !


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Joint two files !
# 1  
Old 01-27-2010
Question Joint two files !

Hello Group,

I request you your help in order create a script for joint two files in one. The idea is to create a new row where the date is the same in both files.

file 1
1/1/2010, 2
1/2/2010, 4
1/3/2010, 6
1/4/2010, 8
1/5/2010, 10

file 2
1/1/2010, 3
1/2/2010, 6
1/3/2010, 9
1/4/2010, 12
1/6/2010, 15

Result file
1/1/2010, 2, 3
1/2/2010, 4, 6
1/3/2010, 6, 9
1/4/2010, 8, 12

I really appreciate it your help

Carlos
# 2  
Old 01-27-2010
Code:
perl -e 'my %hash;
open my $fh1 , "<", "file1" || die "$!";
while (<$fh1>) {
 chomp;
my ($date,$val) = split(",");
$hash{$date} = $val; }
close $fh1;

open my $fh2 , "<" ,"file2" || die "$!";
while (<$fh2>){
chomp;
 my ($date,$val) = split(",");
print "$date,$hash{$date},$val\n" if (exists $hash{$date});
}
close $fh2;  > result_file

HTH,
PL
# 3  
Old 01-27-2010
Try this one:
Code:
awk -F", " 'NR==FNR{a[$1]=$2;next}{$0=a[$1]?$0 FS a[$1]:$0}1' file2 file1



---------- Post updated at 10:54 PM ---------- Previous update was at 10:53 PM ----------

and please use [code] tags when you post data sample or code.
# 4  
Old 01-28-2010
Or this:
Code:
join -t, file1 file2

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Automate splitting of files , scp files as each split completes and combine files on target server

i use the split command to split a one terabyte backup file into 10 chunks of 100 GB each. The files are split one after the other. While the files is being split, I will like to scp the files one after the other as soon as the previous one completes, from server A to Server B. Then on server B ,... (2 Replies)
Discussion started by: malaika
2 Replies

2. Shell Programming and Scripting

How to joint multiple value to 1 files?

HI All need your help i want joint multiple value from 4 files to 1 files. example like below : file 1 : 20:22|303 20:23|287 20:24|318 20:25|307 20:26|315 file 2 : 306 288 319 309 (2 Replies)
Discussion started by: fajar_3t3
2 Replies

3. Shell Programming and Scripting

Shell script for field wise record count for different Files .csv files

Hi, Very good wishes to all! Please help to provide the shell script for generating the record counts in filed wise from the .csv file My question: Source file: Field1 Field2 Field3 abc 12f sLm 1234 hjd 12d Hyd 34 Chn My target file should generate the .csv file with the... (14 Replies)
Discussion started by: Kirands
14 Replies

4. Shell Programming and Scripting

How to create zip/gz/tar files for if the files are older than particular days in UNIX or Linux?

I need a script file for backup (zip or tar or gz) of old log files in our unix server (causing the space problem). Could you please help me to create the zip or gz files for each log files in current directory and sub-directories also? I found one command which is to create gz file for the... (4 Replies)
Discussion started by: Mallikgm
4 Replies

5. Shell Programming and Scripting

need a shell script to extract the files from source file and check whether those files existonserve

Hi, I am new to shell scripting.Please help me on this.I am using solaris 10 OS and shell i am using is # echo $0 -sh My requirement is i have source file say makefile.I need to extract files with extensions (.c |.cxx |.h |.hxx |.sc) from the makefile.after doing so i need to check whether... (13 Replies)
Discussion started by: muraliinfy04
13 Replies

6. UNIX for Dummies Questions & Answers

write a program in c in unix that display the files(includ sub-direc and files within) in a sorted

the sorting is based on name of file, file size modification time stamps o f file it should dislay the output in the following format "." and ".." enteries should be ignored please give some idea how to do it (1 Reply)
Discussion started by: pappu kumar jha
1 Replies

7. Shell Programming and Scripting

How to extract data from indexed files (ISAM files) maintained in an unix server.

Hi, Could someone please assist on a quick way of How to extract data from indexed files (ISAM files) maintained in an UNIX(AIX) server.The file data needs to be extracted in flat text file or CSV or excel format . Usually we have programs in microfocus COBOL to extract data, but would like... (2 Replies)
Discussion started by: devina
2 Replies

8. Shell Programming and Scripting

How to retrieve all the linked script files/ctl files/sql files?

Hi I am going to migrate our datawarehouse system from HP Tru 64 Unix to the Red Hat Linux. Inside the box, it is running around 40 cron jobs; inside each cron job, it is calling other shell script files, and the shell script files may again call other shell script files or ctl files(for... (1 Reply)
Discussion started by: franksubramania
1 Replies
Login or Register to Ask a Question