Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
    $runcount = 0;
    ...
        print STDERR "Good opens $runcount\n";
        die;
    }
    
  2. or download this
        $res = `IPCONFIG`;
        fatal("Call failed") if (!defined $res);    
        $runcount++;
        ($ipaddr) = ($res =~ /(\d+.\d+.\d+.\d+)/);