Cron entry for every 10 mints on business day business hour

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Cron entry for every 10 mints on business day business hour
# 1  
Old 05-29-2012
Cron entry for every 10 mints on business day business hour

Could you “crontab” it to run every 10 minutes on work days (Mo - Fr) between 08:00 and 18:00

i know to run every 10 mints but can any one guide me how to achieve the above one

Last edited by venikathir; 05-29-2012 at 09:20 AM.. Reason: sh
# 2  
Old 05-29-2012
Code:
*/10 08-17 * * 1-5 <<script_path>>

# 3  
Old 05-31-2012
Thnx a lot i found that

and it worked successfully

---------- Post updated at 12:11 PM ---------- Previous update was at 12:10 PM ----------

Any guide me how to close this thread

Last edited by venikathir; 05-31-2012 at 03:40 AM.. Reason: a
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to create a cronjob for the 3rd business day of every month?

Hello, Can you please help me out in creating a cronjob that runs every 3rd business day of the month. Thanks (2 Replies)
Discussion started by: AReddy
2 Replies

2. Shell Programming and Scripting

how to find the second business day of month

I want to decide is that today is larger than the second business day of this month, who can i find second business day of this month? (3 Replies)
Discussion started by: qjlongs
3 Replies

3. Shell Programming and Scripting

next/Previous business day

Hello, Can you please help me how do i get previous and next working day of the week for a given date excluding saturday and sunday. Ex: if the given date is monday, i should get friday and tuesday's date if the given date is friday, i should get thrusday and monday's date. Thanks,... (4 Replies)
Discussion started by: kotasateesh
4 Replies

4. Shell Programming and Scripting

Finding out the first business Day of the month

Hi , I want to find out the first business day of the month using korn shell programming.... ie if March 1 is saturday , March 2 is sunday and 3 is monday My code should identify the First business day..as March 3.. hope u got it.. suggestions ??? Pls look into this asap...... (1 Reply)
Discussion started by: phani
1 Replies
Login or Register to Ask a Question