Script should check and run only on Sunday


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Script should check and run only on Sunday
# 8  
Old 06-21-2014
Thanks rudi n don... am testing this tomorrow .. Will getback with the result. .. Thanks once again. ..
# 9  
Old 06-21-2014
nanz143,
If you are using Autosys, why don't you use a calendar definition to run the script only on Sundays?
This User Gave Thanks to mjf For This Post:
# 10  
Old 06-22-2014
Hi mfj,
I already have a calendar and a job scheduled for it... but I am updating few modules inside the script... so just wanted to ensure it wont run by mistake on other days
# 11  
Old 06-22-2014
As far as i understand your query, you may use cron tab to run run the script on specified day.I dont understand the worth of calender here. So please give a detail query to assist you more.
Thanks
This User Gave Thanks to vinil For This Post:
# 12  
Old 06-22-2014
Quote:
Originally Posted by vinil
As far as i understand your query, you may use cron tab to run run the script on specified day.I dont understand the worth of calender here. So please give a detail query to assist you more.
Thanks
It seems to be quite clearly:

Quote:
Originally Posted by nanz143
and any one can request for start of this job,

But my requirement is, when some one runs this script, script should run and check that it if current day is sunday only then it should run.
to be not a matter of "running on Sundays" but of "not running on any other day". With cron you can only make sure it is run at a certain time.

bakunin
This User Gave Thanks to bakunin For This Post:
# 13  
Old 06-22-2014
Cron is disabled in our environment. .
# 14  
Old 06-22-2014
Quote:
I already have a calendar and a job scheduled for it... but I am updating few modules inside the script... so just wanted to ensure it wont run by mistake on other days
nanz143, if you have the Autosys job defined to only run on Sunday's at a set time(s), then it will only run on Sunday's. If you are worried about the possibility that someone could manually force start the job on non-Sunday's then you have a bigger issue.
This User Gave Thanks to mjf For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Run script on every last sunday of the month

Hi ALL, I have been testing this script to run for every last Sunday of the month,looks like month which have 5 sunday (july 2016 )is not passing this and failing every time. Here is what I am using, current_date=31 echo " CURRENT DAY -> $current_date" if ... (2 Replies)
Discussion started by: netdbaind
2 Replies

2. Shell Programming and Scripting

How to check if script is run via cron or manual=command line?

Hi all, I have a script that can be run via cron or via the command line. Is there any way that I can place something on the script to be able to distinguish/differentiate whether the script was run via a user in the command line or whether it was run from the cron? (3 Replies)
Discussion started by: newbie_01
3 Replies

3. Shell Programming and Scripting

Script to run php and check value in txt

Hello, I'm looking for a bash script, that I will run from cron, that executes a php script. After 5 minutes that the php script is executed, the bash script, must check a value in a text file /public_html/check.txt if check.txt = 0 the script will stop, if check.txt is not = 0 it must... (0 Replies)
Discussion started by: andymc1
0 Replies

4. UNIX for Advanced & Expert Users

Autosys job run on Sunday

Hi, I need to create a autosys job which will run on every sunday at 7:30 AM NY time for each 10 min interval of time. days_of_week: su start_mins: 0,10,20,30,40,50 run_window:"07:30" Is it fine? Please help Thanks, Anup (2 Replies)
Discussion started by: anupdas
2 Replies

5. UNIX for Dummies Questions & Answers

Run script on every second sunday

I was to schedule a script in a crontab after every 15 days specically on every 2nd Sunday. I know that i can schedule on basis of weekdays, but can it be done by skipping in between???:wall: (5 Replies)
Discussion started by: masquerer
5 Replies

6. Shell Programming and Scripting

perl script to check if empty files are created and delete them and run a shell script

I have a local linux machine in which the files are dumped by a remote ubuntu server. If the process in remote server has any problem then empty files are created in local machine. Is there any way using perl script to check if the empty files are being created and delete them and then run a shell... (2 Replies)
Discussion started by: hussa1n
2 Replies

7. Shell Programming and Scripting

Crontab job to run every sunday

Hello, I wanted to run one of my shell script for every sunday at 5PM. Here is the crontab entry i am using.. 00 17 * * 0 /inventory/update.sh > /inventory/update.log 2>&1 The job is not kicking on sunday at the specified time.. Am i missing anthing? Any help is appreciated... (2 Replies)
Discussion started by: govindts
2 Replies

8. Shell Programming and Scripting

Check if script run by a user directly or via other scripts

Hi, i have a script 'a.sh' that should be called only by certain scripts like b.sh, c.sh Inside a.sh, how can i determine 1) if this script was run directly from command prompt (or scheduler) 2) if called via other scripts? Is there an easy way to get parent process name (not just pid),... (2 Replies)
Discussion started by: ysrinu
2 Replies

9. Solaris

How to check for Saturday or Sunday

Hi , I have a date parameter passed in YYYYMMDD format , how can I check whether it is Sat or Sun on Solaris box , as we can do the same easily on linux box by using date -d YYYYMMDD '+a' . Any pointres will be really helpful . (5 Replies)
Discussion started by: harpreetanand
5 Replies

10. Shell Programming and Scripting

check in unix shell script so that no one is able to run the script manually

I want to create an automated script which is called by another maually executed script. The condition is that the no one should be able to manually execute the automated script. The automated script can be on the same machine or it can be on a remote machine. Can any one suggest a check in the... (1 Reply)
Discussion started by: adi_bang76
1 Replies
Login or Register to Ask a Question