Help for this page

Select Code to Download


  1. or download this
    if($_ == "has gone down" ) { ... }
    
  2. or download this
    if(/Server\s(.+):(\d+) has gone down/) {
      my $server=$1;
      my $port=$2;
      ...
    }