Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cron

Status
Not open for further replies.

umeman

Technical User
Oct 2, 2001
59
US
Hi,

I need a shell script test1.ksh to run at the following times:

7:30 am; 11:30 am; 3:30 pm; 7:30 pm

And shell script test2.ksh to run at the following times

7:30 am; 11:00 am; 3:30 pm; 7:00 pm

What should the crontab entries for the 2 shell scripts be ?

Any help appreciated

Thanks
-u-

 
My guess...


30 7,11,15,19 * * * test1.ksh
30 7,15 * * * test2.ksh
0 11,19 * * * test2.ksh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top