Help for this page

Select Code to Download


  1. or download this
      my $caught_sigint = 0;
      local $SIG{INT} = sub { $caught_sigint = 1 };
    
    ...
      if ( $caught_sigint ) {
          die "<<pithy message here>>\n";
      }