Running Multiple Scripts for different business date


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Running Multiple Scripts for different business date
# 1  
Old 04-13-2015
Running Multiple Scripts for different business date

Hi Team,

I have the below 4 scripts which I will be running in sequential order.
This run will start for today's business date.

If all the 4 scripts are success for today that means script has ran succesfully.

Howver if any one of these 4 scripts failed then it has to take the next business day (Monday -Friday) and run these 4 scripts again.

Below are the 4 scripts which I have.

Code:
#!/bin/sh
.....
echo "File Watcher script is executing"
#${SHELL_SCRIPT_PATH/File_Watcher.sh} >> LOG_FILE.$RUN_DATE  2>&1
 
echo "Performing Pre validation check"
${SHELL_SCRIPT_PATH/Pre_Validation.sh} >> LOG_FILE.$RUN_DATE  2>&1
 
echo "Executing Sanity check script"
${SHELL_SCRIPT_PATH/Sanity_check.sh} >> LOG_FILE.$RUN_DATE  2>&1
 
echo "Performing Post validation check"
${SHELL_SCRIPT_PATH/Post_Validation.sh} >> LOG_FILE.$RUN_DATE 2>&1

I can get the tomoro's date and today's date by

Code:
NEXT_DATE=`date -d "$d days" +%Y%m%d`
TODAY_DATE=`date +%Y%m%d`
RUN_DATE =?

Can you help me in putting in the loop so that I can acheive this.

Moderator's Comments:
Mod Comment If you continue ignoring PMs etc. on code tags, you will be banned with the infraction automatically.

Last edited by Deena1984; 04-13-2015 at 09:58 AM..
# 2  
Old 04-16-2015
Can you please help me with this
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Running Multiple scripts at a time

Hello! I have a scriptA.ksh and in this script I need to call script1.ksh, script2.ksh, script3.ksh, script4.ksh and script5.ksh. But want to run in two batches like 1st script1.ksh, script2.ksh, script3.ksh, once all 3 are completed then script4.ksh script5.ksh I have given the syntax... (1 Reply)
Discussion started by: karumudi7
1 Replies

2. UNIX for Dummies Questions & Answers

Execution problem in running multiple scripts

hi all, I have 3 individual scripts to perform the task . 2nd script should run only after the 1st script and 3rd script must run only after first 2 scripts are executed successfully. i want to have a single script that calls all this 3 scripts .this single script should execute the 2nd script... (1 Reply)
Discussion started by: Rahul619
1 Replies

3. UNIX for Advanced & Expert Users

Running multiple php scripts into one php only, cron mail alert problem...

hi, while separated they produce the usual mail alert and i can see the output... if i write into the php script: <?php system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script1.php'); system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script2.php'); system('php -f... (0 Replies)
Discussion started by: 7stars
0 Replies

4. Shell Programming and Scripting

Making use of multiple cores for running sed and awk scripts

Hi All, After reading that the sort command in Linux can be made to use many processor cores just by using a simple script which I found on the internet, I was wondering if I can use similar techniques for programs like the awk and sed? #!/bin/bash # Usage: psort filename <chunksize>... (7 Replies)
Discussion started by: shoaibjameel123
7 Replies

5. Shell Programming and Scripting

Running Multiple scripts based on file size.

Hi, I have created 3 shell scripts which has to run one by one first two shell scripts will create a .txt files...which are used by the third shell script.Now I want to create a master script and run all these in a single script. Please give a pseudo code on how to so the same. ... (4 Replies)
Discussion started by: gaur.deepti
4 Replies

6. UNIX for Dummies Questions & Answers

Shell Scripts - shows today’s date and time in a better format than ‘date’ (Uses positional paramete

Hello, I am trying to show today's date and time in a better format than ‘date' (Using positional parameters). I found a command mktime and am wondering if this is the best command to use or will this also show me the time elapse since 1/30/70? Any help would be greatly appreciated, Thanks... (3 Replies)
Discussion started by: citizencro
3 Replies

7. Shell Programming and Scripting

Running scripts within scripts from cron

Hi all, I have set up a cron job which calls another shell script shell script which in turn calls a Java process. The cron tab looks so. 0,30 7-18 * * 1-5 /u01/home/weblogic/brp/bin/checkstatus.sh >> /u01/home/weblogic/logs/checkstatus.log The checkstatus.sh scripts looks like this. ... (4 Replies)
Discussion started by: sirbrian
4 Replies

8. Shell Programming and Scripting

multiple child scripts running in backgroud, how to use grep on the parent?

Hi I have a shell script A which calls another 10 shell scripts which run in background. How do i make the parent script wait for the child scripts complete, or in other words, i must be able to do a grep of parent script to find out if the child scripts are still running. My Code: ... (5 Replies)
Discussion started by: albertashish
5 Replies

9. Shell Programming and Scripting

running multiple scripts

Hi all I have a requirement where I have a flow like Script1 script2 Script3 Script 4 Script 5 Script 6 script7 where script2 to script6 will... (3 Replies)
Discussion started by: nvuradi
3 Replies

10. UNIX for Dummies Questions & Answers

How to open multiple shells while the scripts keeps running.

Hello, I've tried for a while now to run a bash script that continues to the end, while opening new shells as needed. I've tried xterm -e "somecommand"; & xterm -e " somecommand"; I've also tried screen -S "somecommand"; & screen -S "somecommand"; All without any luck, they... (5 Replies)
Discussion started by: Closed_Socket
5 Replies
Login or Register to Ask a Question