PerlOnTheWay has asked for the wisdom of the Perl Monks concerning the following question:
My program is calling system repeatedly in a loop.
while(1){ system("echo 111"); }
When I press ctrl-c, it doesn't get killed as system seems to be ignoring SIG INT.
Is there a way to make system not ignore SIG INT in Perl?
|
|---|