![]() |
|
Syntactic Confectionery Delight | |
PerlMonks |
How do I make a system() exit on control-C?by faq_monk (Initiate) |
on Oct 08, 1999 at 00:29 UTC ( [id://748]=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
You can't. You need to imitate the
$rc = system($cmd); if ($rc & 127) { die "signal death" }
|
|