in reply to Re^2: run a perl script automatically every 24 hours
in thread run a perl script automatically every 24 hours
You could always do something like:
But that would be a bit silly.while (1) { # your script goes here. sleep 86400; }
Or, you could look at Cron for Windows.
Or maybe CronW, which appears to be a Perl implementation of the same.
Dude - spend 1 minute Googling. It doesn't bite ;)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: run a perl script automatically every 24 hours
by Anonymous Monk on May 24, 2009 at 07:58 UTC |