## Execute the echo command at 10:05am on Sundays and on the 31st.
5 10 31 * 7 echo '''
## Run mycommand every day at 5:05, 5:35, 6:05, 6:35, 7:05, and 7:35.
& 05,35 5-7 * * * mycommand -u me -o file
## Pick up email daily at 20, 21, 22 and 24 minutes past the hour.
20-24~23 * * * * getmail
## Pick up email every 30 minutes.
@ 30 getmails -all
## Run the Save command with low priority at 3:45 daily except Sundays
## and inform user 'jim' about it. Process job after startup
## if the PC was not running at the scheduled time.
&nice(10),mailto(jim),bootrun 45 03 * * *~0 "save --our work"
@KE: