> --
> To unsubscribe, e-mail:
beginners-...@perl.org
> For additional commands, e-mail:
beginne...@perl.org
>
http://learn.perl.org/
>
>
>
Possible most certainly, desirable maybe...
Here is the main thing your loop can run for an x number of seconds 60 at a
minimum or 120 maybe even 1200000 as your code might not get to the end of
the loop before then. Using alarm or any type of module based on this
function will ensure that you will perform the same action a lot closer to
your desired 60 second mark. Using Time::HiRes will allow you to specify
less then seconds which might be interesting in some cases (then you will
use the ualarm call instead of allarm)
Hope that helps a little,
Rob