Help for this page

Select Code to Download


  1. or download this
        if ($line =~ /server is DOWN/) {
            $got_button = 1;
            print $redbutton;
            last;
        }
    
  2. or download this
        if ($line =~ /server is DOWN/i) {
            $got_button = 1;
            print $redbutton;
            last;
        }