Help for this page

Select Code to Download


  1. or download this
    while (<>) {
       my ($node) = split /,/;
    ...
       print $node $_;
       close $node;
    }
    
  2. or download this
    my %cache;
    while (<>) {
    ...
       print $node $_;
    }
    for my $n (keys %cache) { close $n; }