Created
February 3, 2009 08:03
-
-
Save mattn/57397 to your computer and use it in GitHub Desktop.
えっ!それ動くよ!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MyFilter; | |
use strict; | |
use warnings; | |
use Filter::Simple; | |
FILTER { s{ \$SIG\{INT\{ }{ \$SIG\{INT\} }x; }; | |
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use MyFilter; | |
$SIG{INT{ = sub { | |
unlink $tmpfile; | |
exit 1; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment