Help for this page

Select Code to Download


  1. or download this
    my @outfile;
    while (<INFILE>) {
    ...
    foreach my $line (@outfile) {
        print OUTFILE $line;
    }
    
  2. or download this
    while (<INFILE>) {
        # Process stuff here.
        print OUTFILE $newline;
    }