Help for this page
if( $line =~ /$keyword/ ) { $Counter{ $keyword } ++; ...
# Initialize the counter my %Counter = map { $_, [] } @keywords; ... push @{ $Counter{ $keyword } }, $.; ... }