Lubbers, Nicholas wrote: > Use cron for this. > > crontab -e > 10 * * * * /path/to/script Won't that run every hour on the 10 minutes (e.g. 1:10, 2:10, 3:10), etc, but not every 10 minutes? It's possible I'm wrong, but I think the right syntax is: */10 * * * * /path/to/script Matt Flaschen