A Aziz Verified User Joined Oct 4, 2004 Messages 125 Mar 21, 2005 #1 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
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
jmstacey Verified User Joined Feb 12, 2004 Messages 3,887 Location Colorado Mar 21, 2005 #2 */30 * * * * commands should run every 30min.
D Doug New member Joined Mar 24, 2005 Messages 4 Mar 25, 2005 #3 and how - through DA - can you shut off the e-mails the cron job sends when it functions?
jmstacey Verified User Joined Feb 12, 2004 Messages 3,887 Location Colorado Mar 26, 2005 #4 Adding the following to the end of your command will effectively stop email. Code: 1>/dev/null 2>&1