#Store the file in an array, split by newlines while (){ $string .= $_; } @array = split(/\n/, $string); #### while (){ chomp; push( @array $_ ); }