Charles.Berman at pfpc.com wrote...
> How would you set a cron to run every 30 seconds? Otherwise it could work
> for me.
With a start every 30 seconds you're in the high risk an an overrun.
Don't do cron, use a simple shell script with "while true; " and
"sleep 30".
But believe me, this is a bad idea.
Christoph