Help for this page

Select Code to Download


  1. or download this
    foreach my $service (@ServiceCheckList) {
      if (grep($service, @ServicesOnMachine)) {
        print "$service matches\n";
      }
    }
    
  2. or download this
    foreach my $service (@ServiceCheckList) {
      if (grep(/^$service$/, @ServicesOnMachine)) {
        print "$service matches\n";
      }
    }