Help for this page

Select Code to Download


  1. or download this
    chomp(my @data = <DATA>);
    while (my $confLine = <$in>) {
    ...
        }
        print {$out} $confLine;
    }
    
  2. or download this
    my $data_start = tell DATA;
    while (my $confLine = <$in>) {
    ...
        print {$out} $confLine;
    }