I've written a program using the bash shell that I want to use to wake myself up in the morning (pulls up the weather, plays some music, etc.). How do I make my Mac OSX run the program every day at 7:00 AM automatically?
|
feedback
|
migrated from stackoverflow.com Jun 16 '11 at 3:00
This question came from our site for professional and enthusiast programmers.
|
As Mac OSX is BSD and BSD is Unix, you can use the Cron-Daemon. Just edit your cron-file with
an put in the following line
More details here: article about Cron in Wikipedia | |||
feedback
|
|
You can use cron to schedule it to be used every day at time you desire Check the following link: http://hints.macworld.com/article.php?story=2001020700163714 | |||
|
feedback
|