in reply to Fetching Madness
!/usr/bin/perl -w use strict; $| =1; #turns off output buffering #without this the "die" message might not be #seen due to STDOUT buffering $SIG{ALRM} = 'alarmhander'; alarm(1); while (1) { print "blah...anything..lot's of lines\n"; } sub alarmhander { die "ooops bailing out with die\n" }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Fetching Madness
by jlongino (Parson) on Mar 09, 2009 at 14:29 UTC | |
Re^2: Fetching Madness
by jlongino (Parson) on Mar 11, 2009 at 20:34 UTC | |
Re^2: Fetching Madness
by jlongino (Parson) on Mar 12, 2009 at 15:08 UTC | |
by Marshall (Canon) on Mar 12, 2009 at 15:33 UTC |