Help for this page

Select Code to Download


  1. or download this
    sub do_something {
        local $SIG{__WARN__} = sub { ... };
        # your stuff goes here
        ...
    }   # previous version restored
    
  2. or download this
    my $old_warn = $SIG{__WARN__};
    $SIG{__WARN__} = sub {
        # your stuff
        $old_warn->(@_);
    }