Here are some examples of CRON specifications.
These specifications are valid for both -start and -stop directives as well as -suspend and -resume.
When we're talking about cron specifications, we're usually speaking in terms of a 24 hour clock.
The fields are as follows: Minute, Hour, Day of the month, Month, and Day of the week
* * * * * #every second
0-59 * * * * #every minute
0 * * * * #on the hour
30 4 * * 1-5 #Mon-Fri at 0430
30 19 * * 2,4,6 #Mon, Wed, Fri at 1930
0 9 25 12 * #Xmas morning at 0900 only
## hello world!
# This example uses a cron specification to print "Hello World!"
# in the console window every Mon, Wed, and Fri at 1930
{
-name HELLO-WORLD
# UNIX cron-style pattern matching
# Lets match Mon, Wed, and Fri at 1930.
-start -cron 30 19 * * 2,4,6 # do whatever script functions you wish to do now
-action -print "Hello World!"
}
_________________________
Regards,
Luke Tomasello