http://qs321.pair.com?node_id=37205

reyjrar has asked for the wisdom of the Perl Monks concerning the following question: (programs and processes)

could I do something to kill off that child process regardless of where it is in its run after 2 minutes? I've heard messing with SIGs is bad and my first instinct is to:
SIG{'ALRM'} = sub {exit(0); } alarm '120';
but I don't want to break this box :)

thanks much..

Originally posted as a Categorized Question.