danatural,
Here is something I have found handy when adding something to cron -- a "cheat sheet" on which field is for which time unit. I've actually added the first 6 lines below to the top of my crontab and I show a sample command.
# minute (0-59)
# | hour (0-23)
# | | day of the month (1-31)
# | | | month of the year (1-12)
# | | | | day of the week (0-6 with 0=Sunday)
# / / / / / commands
0 3 * * * /usr/sbin/skulker
Also, if you don't want to get an email everytime the command is run from cron, add this after the command:
>> /dev/null 2>&1