Return status of all previous runs


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Return status of all previous runs
# 1  
Old 06-26-2006
Return status of all previous runs

hi, I set the crontab to execute script A every 5 minutes from 9:00 am to 4:00 pm everyday, now at 12:00am I want to run another script if and only if all the previous runs of script A return OK, can anyone tell me how it could be done? thank you very very much!
# 2  
Old 06-26-2006
Set your script up to write to a tmp file a success or failure. Then take your new script and grep the file for failure. If failure exists then your cron script exits and notifies you. If no failure is found then you proceed and have that script notifiy you as well.

-X
# 3  
Old 06-26-2006
You could split your cron line into three this way:
Code:
00,05,10,15,20,25,30,35,40,45,50,55 4-11,13-21 * * * script1.sh
00 12 * * * script1.sh && script2.sh
05,10,15,20,25,30,35,40,45,50,55 12 * * * script1.sh

At 12:00 script2.sh will only run if script1.sh finished with exit status of 0.
So you won't need a temp file.
Well, I think this should work, but I'm not sure Smilie
# 4  
Old 06-26-2006
thank you guys, but could grial explains how your method works with a little more detail? I have pretty new with these stuff, thanks!
# 5  
Old 06-27-2006
Of course Smilie
Well, of the three crontab lines above, the second is the interesting one for you:
Code:
00 12 * * * script1.sh && script2.sh

You may consider it as a boolean expression, meaning that
script2.sh will run if, and only if, script1.sh finished successfully (exit 0).
This will happen at twelve o'clock.

The first line says that script1.sh will run from 4 to 11 and from 13 to 21 every 5 minutes. The last line says that script1.sh will run every 5 minues from 12.
Regards.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to return a message after command runs?

I have a script like this: echo "enter filername in lowercase" read -e filername exec 2>&1 echo "type the start date in format MM/DD/YYYY" read -e startdate exec 2>&1 echo "enter the end date in format MM/DD/YYYY" ... (2 Replies)
Discussion started by: newbie2010
2 Replies

2. Shell Programming and Scripting

Return Status

Hi can you explain me, what does variables $@ and $* return and how are they used, if can give me a sample example it could be helpful. Thanks in advance, Regards, Abhishek S. (1 Reply)
Discussion started by: abhisheksunkari
1 Replies

3. Shell Programming and Scripting

How would you return how long a script runs for?

When running a ksh script, how would you time how long it took the script ran for? Is there a command that can capture this? (1 Reply)
Discussion started by: Jazmania
1 Replies

4. UNIX for Dummies Questions & Answers

return previous line for pattern match

Hi, Need some idea on file processing, I have file like below, Processing al sources ... ...No value found : CHECK. Completed comparing all sources. Comparing schedulers... Processing al targets ... ...No value found : From above I need to extract the line where "No value... (4 Replies)
Discussion started by: braindrain
4 Replies

5. Shell Programming and Scripting

evaluate return status of a function

Hi all I'm trying to evalute the return status of a function without much success. I've put a very basic example below to explain. check_ok() works fine but when used within an if statement, it always returns true, whether it is true or false. I'm guessing it returns true as the function... (4 Replies)
Discussion started by: tig2810
4 Replies

6. HP-UX

Return of EXIT status ( $? )

I have the question: How return the exit code from then assign : VAR=$(command ) for ex. VAR=$(ls ....) VAREXIT=$? echo $VAREXIT VAREXIT is equal to 0 if the directory exist or not exist. WHI?? if i execute the command direct from line-command , the value of $? is different if... (1 Reply)
Discussion started by: ZINGARO
1 Replies

7. Shell Programming and Scripting

return the previous line

Hello friends , I am doing the following command, but it is not wise to all files. for temp in `find ./CSV/ -name "*.txt"` do sed -n -e 'N; /*Main End/p' $temp done Its give me the correct output for some files , but not for all files. I mean some files contains the... (12 Replies)
Discussion started by: user_prady
12 Replies

8. Shell Programming and Scripting

Verify scp return status

Hi all below is a snippet of my perl codesystem ("scp -pq $dest_file $path");How i can i trap the return status? ie if the scp fails how can i know ? (2 Replies)
Discussion started by: new2ss
2 Replies

9. Shell Programming and Scripting

return ftp status

Hello, I still have problems when trying to figure out if the status of an ftp was successful. I ftp to different types (nt, vax, unix, etc...) of machines. I am trying to write a universal script that will ftp a file and then check to see if the ftp was successful. I have tried the... (12 Replies)
Discussion started by: blt123
12 Replies

10. Shell Programming and Scripting

Return status...

Hello there! Here is my problem. I hope I can get some help about it. I need to know how can I get the return code of an application in the Unix shell script. The script is like below: PREVIOUS STATEMENT & VARIABLES sqlplus scott/tiger @$sqldir/$sqlscript NEXT STATEMENT (Like... (7 Replies)
Discussion started by: Shaz
7 Replies
Login or Register to Ask a Question