Here is a typical crontab entry and the definition of cron fields:00 03 * * *  /tmp/zing.sh
- minute
 - hour
 - day of the month
 - month of the year
 - day of the week
 - program or command to run
 
 An asterisk (*) in any field means run every time for this field.
Ranges (X-Y) and steps (X-Y/Z) can also be defined. 
User crontabs (including the root user)
 To edit a user crontab (including root):crontab -e 
 To delete a crontab:crontab -r 
The system crontab is stored in /etc/crontab. It can be changed (as root) with a text editor.
The system crontab has one extra field before the program to run, which is the user to run the command as (usually root).
Periodic jobs in OS X Tiger
The system cron jobs were replaced in Tiger with launch daemons, in /System/Library/LaunchDaemons/. There are daily, weekly, and monthly launch daemons for system maintenance. They run shell scripts in /etc/periodic/.
The system shell scripts will run user scripts on the same schedule if they exist. To take advantage of this, simply create your own local scripts called /etc/daily.local, /etc/weekly.local, or /etc/monthly.local.  They are run as root.