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