in reply to Running a script iteratively.
To code it in perl, e.g. for Windows without cron daemon, you could write something like this:
This would delay for two minutes after the get_values script ended. You might want to add an possibility to stop this loop without killing the perl process.while ( 1 ) { system("perl get_value.pl"); sleep(120); }
Update: This might look like a repost of an above post, but I got interrupted for an half hour after I wrote this post but before I could sent it. Afterwards I was just sending it without checking if anyone else gave the same answer in the meantime.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Running a script iteratively.
by moklevat (Priest) on Apr 24, 2008 at 15:21 UTC | |
by Your Mother (Archbishop) on Apr 24, 2008 at 15:43 UTC | |
|
Re^2: Running a script iteratively.
by Anonymous Monk on Apr 26, 2008 at 07:10 UTC |