Help for this page

Select Code to Download


  1. or download this
      ...
      # calculate $logtype
      $hash_ref->{$logtype}++;
    
  2. or download this
    if($_ =~ /\s+Description.*$/) {
      chomp($description = <DATA>);
    }
    
  3. or download this
    if($_ =~ /\s+Description.*$/) {
      while(chomp($description_line = <DATA>)) {
    ...
        $description .= $description_line
      }
    }