Help for this page

Select Code to Download


  1. or download this
    if ( $_ == "has gone down" ) { run start server command }
    
  2. or download this
    if ( $_ eq "has gone down" ) { run start server command }
    as it's a string comparison, but actually should be
    if ( /has gone down/ ) { run start server command }
    as it's a match you're looking for.