
Kanji
User
May 3, 2004, 4:15 PM
Post #2 of 2
(598 views)
|
|
Re: [andy7t] Cron Every 30 seconds??
[In reply to]
|
Can't Post
|
|
I'm not sure which version of cron RH9 comes with, but the more common version don't support seconds. However, it isn't too hard to work around if you run a shell script like the following from cron instead of your Perl script...
#!/bin/sh your_script & sleep 20 your_script & sleep 20 your_script & --k.
|