Help for this page

Select Code to Download


  1. or download this
    print "Collected $file (rc=". (defined $rc?$rc:'undef') . ")\n";
  2. or download this
    while (my $line = <FILE>) {
             chomp $line;
             push @$outref, $line;
    ...
                last;
             }
       }
    
  3. or download this
       my $file_size = -s IFILE;
       die "$file too large at $file_size bytes" if $file_size > $g_max_fi
    +le_size;
      @$outref = <IFILE>;