in reply to Re: Timed Execution
in thread Timed Execution
Note that cron is the right answer. We're just having some fun. :)while (1) { sleep(50); # If it's a windows box, give yourself a little extra time. Trust me. + my ($min, $hour) = (localtime(time))[1,2]; if ($hour == 11 && $min == 0) { # Do your 11:00 stuff } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Timed Execution
by slayven (Pilgrim) on Nov 06, 2001 at 10:28 UTC | |
by Erik Hensema (Sexton) on Nov 06, 2001 at 14:20 UTC |