my @outfile; while () { # Process stuff here. push @outfile, $newline; } foreach my $line (@outfile) { print OUTFILE $line; } #### while () { # Process stuff here. print OUTFILE $newline; }