Help for this page

Select Code to Download


  1. or download this
    if (($STATUS1 =~ m/^Running$/i) && ($STATUS2 =~ m/^Running$/i)) {     
    +                         
      print "match\n";           ^^
    }
    
  2. or download this
    if (($STATUS1 eq "Running") && ($STATUS2 eq "Running")) {
      print "match\n";
    }