Help for this page

Select Code to Download


  1. or download this
    alarm(180); # stop script after 3 minutes
    
  2. or download this
    $SIG{ALRM} = \&sighandler;
     
    ...
        print "WARNING: Script timed out or was killed\n";
        exit (0);
    }