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

Re^5: Merging specific data from 2 files into a third.

by nobull (Friar)
on Nov 10, 2006 at 18:16 UTC ( [id://583374]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use FileHandle;
    my $fh = new FileHandle;
    my @input_file2;
    tie @input_file2, 'Tie::File', \$fh, or die "Problem tying file $input
    +_file2: $!";
    
  2. or download this
    usage: tie @array, Tie::File, filename, [option => value]... at ./SS7M
    +erge line 42
    
  3. or download this
    tie my @input_file2, 'Tie::File', $input_file2
       or die "Problem tying file $input_file2: $!";
    
  4. or download this
    open my $fh, '+<', $input_file2
      or die "Problem opening file $input_file2: $!";
    tie my @input_file2, 'Tie::File', $fh
      or die "Problem tying file $input_file2: $!";
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-24 01:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found