Help for this page

Select Code to Download


  1. or download this
      my $IFS=$/;  # Save that please... 
      $/='';       # We're gonna make one big input... 
    ...
      $/=$IFS;          # put that back. 
     
      return 3 if grep /Non-existent/,@check;
    
  2. or download this
      `$nslookup -type=any $domain 2>&1` =~ /Non-existent/ and return 3;