Help for this page

Select Code to Download


  1. or download this
    for ( my $i = 0; $i <= $#alert; $i++ ) {
      unless(grep /$process[$i]/ , @ptable) {
       $alerts{"$alert[$i]"­} .= "\n$message[$i]";
      }
    }
    
  2. or download this
    for (0..@alert) {
      next if (grep /$process[$_]/, @ptable);
      $alerts{$alert[$_]} .= "\n$message[$_]";
    }