Cront Jobs Timing... Messy (maybe not understandable)

Aziz

Verified User
Joined
Oct 4, 2004
Messages
125
Greetings,

If I want to make the cron job run every half hour it would do this:?

30 --> minutes
0-23 --> hours
1-31 --> days
1-12 --> month
0-7 --> day of week

?

Please advise,

Peace,
Aziz
 
and how - through DA - can you shut off the e-mails the cron job sends when it functions?
 
Adding the following to the end of your command will effectively stop email.

Code:
1>/dev/null 2>&1
 
Back
Top