Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Finding Files and Processing them iteratively

by blazar (Canon)
on Feb 25, 2005 at 13:02 UTC ( [id://434444]=note: print w/replies, xml ) Need Help??


in reply to Finding Files and Processing them iteratively

my $file_r = $ARGV[0]; my $file_r = $ARGV[1]; open FILE_R, "< $file_r" or die "Can't open $file_r : $!"; open FILE_P, "< $file_p" or die "Can't open $file_p : $!";
And $file_p is?!?
while (<FILE_R>){ chomp; push @rdata, $_; } while (<FILE_R>){ chomp; push @rdata, $_; } my @sum = map {$rdata[$_] + $pdata[$_]} 0..$_#a;
And @a is?!?

Please note that while it's easy to understand what your code could be supposed to do, the above simply won't compile, and it's advisable to post minimal, but complete, working samples of code.

As a side note, since basically you trust your files to hold the same number of entries, you could avoid putting all of their contents into arrays to process them later (this basically amounts to -unnecessary- slurping) and process them sequentially instead...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://434444]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (8)
As of 2024-04-23 12:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found