How do I have a script run every, say 30 minutes? I assume there are different ways for different OSs. I'm using OS X.
|
4
|
|
|
|
|
|
Don't use cron as people have suggested. cron is legacy on OS X. Use launchd instead. It's different if you need to run it as system task (for all users) or as user task, just when your user is logged. System tasks go to
if they shall run, no matter if any user is logged in at all. If they shall only run if any user is logged in, they go to
if they shall run only if you are logged in, they go to
where ~ is your HOME directory. Every task there is a file in plist format. It should have reverse domain name notation. E.g. you can name your task
This plist can have various options and settings. Writing one per hand is suboptimal, you may want to get the free tool Lignon to create your task. Just as an example, it could look like this
This agent will run the shell script /usr/local/bin/my-script.sh every 1800 seconds (every 30 minutes). You can also have task run on certain dates/times (basically launchd can do everything cron can do) or you can even disable "OnDemand" causing launchd to keep the process permanently running (if it quits or crashes, launchd will immediately restart it). You can even limit how much resources a process may use (as said before, Ligon shows all these settings in a nice UI interface). Also you can manually enable/disable tasks via command line:
command can be load or unload, to load a plist or unload it again, in which case parameter is the path to the file. Or command can be start or stop, to just start or stop such a task, in which case parameter is the label (com.example.my-fancy-task). |
||||||
|
|
|
On MacOSX, you have at least the following options: From personal experience, cron is the most reliable. When I tested, launchd had a number of bugs and quirks. iCal alarms only run when you are logged in (but that might be something you prefer). |
||
|
|
|
|
Use cron. |
||||||
|
|
|
For apple scripts, I set up a special iCal calendar and use alarms to run them periodically. For command line tools, I use launchd. |
||
|
|
|
|
As Mecki pointed out, launchd would be the way to go with this. There's a GUI interface for launchd called Lingon that you might want to check out, as opposed to editing the launchd files by hand:
Some screenshots are available to to give you an idea of what it looks like: |
||
|
|
|
|
FYI: while i do so miss it's siplicity, cron is a thing of the past on OS X. It was watchdog on panther. Since Tiger it has been launchd. So if you are running Leopard cron is not an option. |
||
|
|
|
|
You can use the cron scheduler built into OS X. Here's a primer. |
||
|
|
