How to schedule a job


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to schedule a job
# 1  
Old 09-22-2005
How to schedule a job

Hi,

How can i schedule a job, i.e a program named p found at path a/b/c, to run at a time T everyday?

Thanks
# 2  
Old 09-22-2005
Welcome to the forum.

Use the search facility provided.

cron and crontab
Need tut on Cron info

vino
# 3  
Old 09-22-2005
Was looking at the job scheduling query and recalled a requirement that I had. It seems in the cron format you cant specify time incrementally i.e. if i want to run sthing every 2 minutes, the only option i have is to enter a command like this:
00,02,04,06,08,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58 * * * * $HOME/file.sh


Is there a better way?
# 4  
Old 09-22-2005
*some* versions of cron allow a syntax such as

*/2 in the minute field to denote "every two minutes"

Check out the man page for the crontab file (man 5 crontab on Linux).

Cheers
ZB
# 5  
Old 09-22-2005
How to Schedule a job

hai ,

go to /etc
open crontab

specify
* * * * * roots /a/b/c/program name
the stars will be
1. minutes
2.hours.
3.day of the week
4.day of the month
5.month of the year

according what u specfied u can run the job

Smilie
# 6  
Old 09-22-2005
Quote:
Originally Posted by sanjustudy
hai ,

go to /etc
open crontab

specify
* * * * * roots /a/b/c/program name
the stars will be
1. minutes
2.hours.
3.day of the week
4.day of the month
5.month of the year

according what u specfied u can run the job

Smilie
Hmm... lots of incorrect and/or misleading information here.

Firstly, this is the system crontab (under Linux) - as can be seen by the additional field between the scheduling fields, and the command field. This field contains the username of the user as which the command is to run. Now, in this case, I assume the user "roots" is a standard user? If you're refering to the superuser, then the correct username is "root". Also, the ordering of the fields as you've described is way off.

1. minutes
2. hours
3. day of month
4. month
5. day of week

Is the correct ordering of the scheduling fields. Before posting a reply, check that it's correct. If you have any doubts, check the crontab manual page....

Cheers
ZB
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How do you schedule a job to run at 3:45 am every morning?

help me (2 Replies)
Discussion started by: sonu pandey
2 Replies

2. Shell Programming and Scripting

schedule a job without Cron

Hi All, Is there any way (any utility) to schedule a job to run once in a week on RedHat Linux ? Note- Do not using Crontab. Thanks Pravin (1 Reply)
Discussion started by: pravin27
1 Replies

3. Shell Programming and Scripting

schedule job

Hi, I have a spcific box called abc in autosys and below that there are 2 jobs. my requirement is to run the abc box only on monday and rest of the day the rest of the jobs should be in success status.. ---------- Post updated at 03:11 PM ---------- Previous update was at 02:45 PM ----------... (4 Replies)
Discussion started by: j_panky
4 Replies

4. UNIX for Dummies Questions & Answers

Schedule a cron job

Hi, Can anyone help me out with scheduling a cron job for the below: i wnated to delete file from a folder on every sunday at 05:00 AM this is code i have used. ******************************************************* 0 05 * * 0 find /abc/xyz/pqrs/bak/ -type f -mtime +30 -exec rm -f... (5 Replies)
Discussion started by: ch33ry
5 Replies

5. UNIX for Dummies Questions & Answers

Schedule a corn job

Hi, I new to cron job... I need to schedule a job that runs on a particular day at a specific time say for example need to send a test mail at around 2:30PM on wed 10th August i have used the below syntax, but the job was not executed. 30 14 * * * echo "message from UNIX... (3 Replies)
Discussion started by: ch33ry
3 Replies

6. Shell Programming and Scripting

Schedule a Cron job

Hi all, I am new to cron jobs.. i wanted to schedule a cron job that wil send a mail to me at 3:00PM on 10th August ie is on Wednesday. 0 15 10 8 3 echo "message from UNIX here"|mail -s "your subject here" user@user.com However this was not executed... Can anyone please... (0 Replies)
Discussion started by: ch33ry
0 Replies

7. AIX

Schedule Job

how to schedule a job in aix, pls explain with cmd (1 Reply)
Discussion started by: udtyuvaraj
1 Replies

8. UNIX for Dummies Questions & Answers

How would i schedule a job on ESX

Hi I m using a machine for VMWARE setup. machine details. #uname -a VMkernel testmachine.test.com 3.5.0 #1 SMP Release build-110271 Aug 12 2008 19:36:55 i686 unknown the problem is i m not able to schedule a job using crontab as crontab is not found on the machine. ~ # crontab -e... (5 Replies)
Discussion started by: pinga123
5 Replies

9. Shell Programming and Scripting

Schedule a job using Crontab

I would like to execute my script at 17.30 and 23.00 using crontab, could anybody help me out!! Thanks in Advance!! (1 Reply)
Discussion started by: jatanig
1 Replies

10. Shell Programming and Scripting

How to Schedule job using cron(URGENT)

Hello All, I m newbie to Job scheduling. Suppose i have 2 files s1.sh and s2.sh i want to make a schedule such as run s1.sh at 2AM everyday and run s2.sh 9Pm everyday. Can anyone tell me how to schdule that using CRON and i want to know what is CRON and CRONTAB. Thanks in advance (2 Replies)
Discussion started by: ravi.sadani19
2 Replies
Login or Register to Ask a Question