my @array; while ( my $line = ) { chomp $line; push @array, $line; } #.... later on... foreach ( @array ) { print "$_\t"; }