CronTab

- for month and day of week you can use names: first 3 letters of day or month, case insensitive

- 0 and 7 represent sunday

- you can also use:

string meaning
------ -------
@reboot Run once, at startup.
@yearly Run once a year, "0 0 1 1 *".
@annually (same as @yearly)
@monthly Run once a month, "0 0 1 * *".
@weekly Run once a week, "0 0 * * 0".
@daily Run once a day, "0 0 * * *".
@midnight (same as @daily)
@hourly Run once an hour, "0 * * * *".

example:

#min hour day_of_month month day_of_week
0 1 * * * public_html/michael_net/notifier/./notifier.py >> notifier.log 2>&1

the above example dumps the output in 'notifier.log' and sends no email ('2>&1')