Schedule and Run By weekly shell script in cronjob


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Schedule and Run By weekly shell script in cronjob
# 1  
Old 03-07-2013
Schedule and Run By weekly shell script in cronjob

Hi All,

How to schedule a shell script(script name- byweeklyreport.sh) it should run by weekly in corn job or is there any script have to write to check week and then run the above script.
example-1st run March 06 2013
2nd run March 20 2013
3rd run April 3 2013 like that
please give some example except PERL Script


Thanks all in advance

Regards,
Krupa
# 2  
Old 03-07-2013
# 3  
Old 03-07-2013
Hi,
Sorry actually i need example for this,that you have provided information is not enough.

Thanks
Krupa
# 4  
Old 03-07-2013
Every week
Code:
0 0 * * 0 byweeklyreport.sh

CronBuddy - a crontab sandbox

Last edited by Jotne; 03-07-2013 at 08:56 AM..
# 5  
Old 03-07-2013
Depending on the OS you are using, you may have a cron setup that works for every two weeks, but by using the date command in your script you could schedule it weekly and they choose whether to actually execute or not.

On many flavours of unix, you may find that
Code:
date +%j

gives the Julian date. Given that there are seven days in a week, you could schedule every Monday and then have a test for "Is today an even Julian date?" test at the top.

Some other flavours will give the week of the year, and it's a similar thing, but probably using Julian date is the best.

So an entry for cron:-
Code:
$ crontab -e
0 4 * * 1 /home/myuser/myscript

will run this every Monday at 4am. You could then code your script like this:-
Code:
#!/bin/ksh

juldate=`date +%j`
((jultest=$juldate/2))
((jultest=$juldate*2))

if [ $juldate -ne $jultest ]
then
   print "This is an odd week of the year."
   print "No actions performed."
   exit
fi

# I have confirmed it is an even numbered Monday, so proceed

blah blah blah.......

Of course, you could make the test -eq to say you want to ignore even numbered Mondays. The divide by two, multiply by two relys on odd numbers division getting the 0.5 truncated, so if the Julian date is 123, the half is only counted as 61, so double it again and you get 122. Test then finds that they are different.


Does this help?



Robin
Liverpool/Blackburn
UK
# 6  
Old 03-07-2013
Quote:
Originally Posted by krupasindhu18
Hi,
Sorry actually i need example for this,that you have provided information is not enough.

Thanks
Krupa
Had you taken the time to read that man page, you would have found an example exactly dealing with and solving your problem.
# 7  
Old 03-26-2013
Hi,
Actually my Requirement is like this :-
I have shell script in kern shell ,have to run alternate week per month
example-today's date is 27 Mar 2013 and my script will run today then for the next time when it will run it should check 1st what was the last run date(27 Mar 2013) if it is matched 15days from current date then run else sent a mail with waning mgs.

i have a AWK command it is checking only within a month
Code:
Code:
date +%Y:%m:%d|awk -vFS=":" -vOFS=":" '{$3=$3-3;print}'

suppose i am checking 20days from current date it is give some negative value(-8)
ex-2013:03:-8

I hope you will understand my problem.
Advance thanks for giving me solution.

Thank you All.

Regards,
Krupa

---------- Post updated at 04:08 AM ---------- Previous update was at 04:05 AM ----------

Quote:
Originally Posted by Jotne
Every week
Code:
0 0 * * 0 byweeklyreport.sh

CronBuddy - a crontab sandbox

i don't think you are reading properly my thread
please read carefully and replu me back

Last edited by Franklin52; 03-26-2013 at 06:39 AM.. Reason: Code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Script does not run from a user specific cronjob.

Hello, I have two crontabs, one for the root and one for another user. There is a script in my configurations that has to send a email. The script works and sends the emails when I run it by hand with either the root or the user, and when I program it in the root's crontab. But! It does not... (3 Replies)
Discussion started by: Tralaraloro
3 Replies

2. UNIX for Dummies Questions & Answers

Best way to schedule script to run Ubuntu 10.04

On Ubuntu 10.04 LTS, I would like to know the best way to schedule myscript.sh to run at a specified time, please provide examples and specify things like does cron have to be running, how do I check if cron is running and all that. I have tried unsuccessfully in the past to run the AT command,... (1 Reply)
Discussion started by: glev2005
1 Replies

3. Shell Programming and Scripting

Schedule a script to run at 10am from mon to fri

Hi, I need to write a shell script which will run i background and will execute other script only on Mon to Fri 10 AM but not on Sat and Sun. I am able to set it to run on every day at 10AM but how to make it to run only on Mon to Fri Thanks, Firestar. (7 Replies)
Discussion started by: firestar
7 Replies

4. AIX

My script didn't run every run every minute at cronjob

In my cronjob, I would like to schedule my script.sh to run every minutes. I crontab -e and have in line below but it didn't seems to run at all. * * * * * script.sh When I run it manually, I can run it. Is that anything wrong with the above line? If I change it to something like below,... (4 Replies)
Discussion started by: ngaisteve1
4 Replies

5. Shell Programming and Scripting

How to schedule a cronjob to run every 15 mins ?

Hi, I want to schedule a job to run every 15 mins through cron. searched the forums and came up with this piece of code.i have given this in my crontab 0-59/15 * * * * sh /usr/ss/job But its not being run. Have i made any mistake here. Can any1 post the cron code for scheduling the... (5 Replies)
Discussion started by: suresh_kb211
5 Replies

6. Shell Programming and Scripting

General Q: how to run/schedule a php script from cron jobs maybe via bash from shell?

Status quo is, within a web application, which is coded completely in php (not by me, I dont know php), I have to fill out several fields, and execute it manually by clicking the "go" button in my browser, several times a day. Thats because: The script itself pulls data (textfiles) from a... (3 Replies)
Discussion started by: lowmaster
3 Replies

7. Shell Programming and Scripting

Running script that sends an html formatted email fails when its run as cronjob

Hi Im very new at working with unix and this problem I simply can not understand. I know there are a lot of threads about problems with shell scripts behaving differently when run from a terminal and from a cronjob. I have tried everything(almost) but I still havent cracked this problem. Im... (15 Replies)
Discussion started by: Nightowl
15 Replies

8. UNIX for Dummies Questions & Answers

cronjob to run perl script

Hi all Recently i had finished a perl script. When i run manually, the script work fine. But when i wanted to put the script in cron, it didn't get the same output as it run manually. I felt that it only execute the script until certain line then it stop as i see most of the related files didn't... (6 Replies)
Discussion started by: AirWalker83
6 Replies

9. Solaris

How to run a script as different user inside cronjob in solaris.

Hi , I have a shell script to perform some actions on sun solaris box . This script normally requires to be run as a different user. so, whenever i have to run this script, i need to sudo in as that user , enter the password and execute it. Now,I have to setup a cronjob to execute the script... (11 Replies)
Discussion started by: csg_user
11 Replies

10. Shell Programming and Scripting

set schedule to run a script at background while logout

Hi, How can I run a script at 9:00am and 6:00pm everyday? Can I run it at background while I logout my account? Please help!! Many Thanks!! (1 Reply)
Discussion started by: happyv
1 Replies
Login or Register to Ask a Question