how to loop script for every 1 hour


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to loop script for every 1 hour
# 1  
Old 08-25-2011
how to loop script for every 1 hour

Hi All,

Need to run a1.sh script using nohup command (since crontab facility not there in my unix server) as below:
nohup ksh -x a1.sh &

a1.sh contains:
nohup ksh -x b1.sh 2> b1.log &

In a1.sh script i need to trigger b1.sh script every one hour. How to loop b1.sh to run for every 1 hour?


Thanks in Advance,
# 2  
Old 08-25-2011
How long the b1.sh script runs?

You can use sleep command in side a1.sh for a predefined time and then can fire b1.sh from it.
# 3  
Old 08-25-2011
but the problem is b1.sh script takes around 35mins to run.
i need to run b1.sh for every 1 hour. Is there a way to loop around without sleep command using date command?

Thanks in Advance,
# 4  
Old 08-25-2011
How about this?

Code:
 
cat a1.sh
 
while true 
do
if [ -f /tmp/verify ] ; then
exit
fi
sleep 3600
nohup ksh -x b1.sh 2> b1.log &
done
 
run nohup a1.sh &

When you want to come out of script create a file /tmp/verify

I'm not sure on how you want to use date here!
# 5  
Old 08-25-2011
@HemaV: are you able to use the at command?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script max value per hour

i want to get max value every hour sample input : 20:46:22 23 20:46:23 65 20:46:24 30 20:46:25 7 21:46:26 23 21:46:27 28 21:46:28 47 21:46:29 35 22:46:30 5 22:46:31 38 22:46:32 26 22:46:33 19 23:46:34 7 23:46:35 6 23:46:36 3 23:46:37 10 (7 Replies)
Discussion started by: fajar_3t3
7 Replies

2. Shell Programming and Scripting

Run the script continously but mail once in 1 hour

Hi, I have a script written for monitoring the queue manager status continously. below is the script. QMGR=`dspmq | awk '{print $1}' | cut -f2 -d "(" | cut -f1 -d ")"` QMSTATUS=`dspmq | awk '{print $2}' | cut -f2 -d "(" | cut -f1 -d ")"` count=`dspmq | awk '{print $1}' | cut -f2 -d "(" | ... (5 Replies)
Discussion started by: Anusha M
5 Replies

3. Shell Programming and Scripting

Shell script to be run every one hour

How can we run shell script every one hour. Anyone having code unit for this? (1 Reply)
Discussion started by: Pratiksha Mehra
1 Replies

4. Shell Programming and Scripting

Need a script to see top processes for every hour

Hi All, I am new to Scripting , please give me guidance to write the script to see top processes on the Linux operating system. I executed this script on my Virtual Server(Linux) DATE=`date +%Y%m%d%H%M%S` HOME=/home/xmp/testing/xmp_report RADIUS_PID=`xms -xmp sh pr | grep... (2 Replies)
Discussion started by: madala
2 Replies

5. Shell Programming and Scripting

How to run script automatically every 12 hour once?

Hi ! all, I have once script to remove temporary cache and temporary xml files looks like this, as it is taking more space, I would like to run automatically every 12 hour once, and then I want to receive some log as acknowledgement #!/bin/sh echo "Removing logs and temp files (typically... (4 Replies)
Discussion started by: Akshay Hegde
4 Replies

6. Shell Programming and Scripting

How to convert 24 hour time to 12 hour timing?

Hi friends, I want to convert 24 hour timing to 12 hour please help me... my data file looks like this.. 13-Nov-2011 13:27:36 15.32044 72.68502 13-Nov-2011 12:08:31 15.31291 72.69807 16-Nov-2011 01:16:54 15.30844 72.74028 15-Nov-2011 20:09:25 15.35096 ... (13 Replies)
Discussion started by: nex_asp
13 Replies

7. Shell Programming and Scripting

Script to Change Permission on a directory after every hour

I want to change the permission of a dir to 777 after every hour in a background process.I do not have the access to the crontab , is there another way of doing it a scrit of some thing like that . Any help will be great. (1 Reply)
Discussion started by: neeraj617
1 Replies

8. Shell Programming and Scripting

how to stop execution of a script after one hour

I have a shell script that writes some data in a file. I want to stop the script after one hour from start of execution using "EXIT 1". how to do it. I don't want to use CRONTAB. (5 Replies)
Discussion started by: mady135
5 Replies

9. Shell Programming and Scripting

Unix Script for getting date and validating just Hour

Hi, Can someone guide me to write a unix script for getting a hour out of a date command and validating hour to see if its > 7 and < 16. if hours is >7 and <16 then assign a variable value of 0730 and if hour is >16 then assign a variable value of 1630? Help appreciated. Thanks in advance.... (9 Replies)
Discussion started by: zulfikarmd
9 Replies

10. Shell Programming and Scripting

Run a script on the hour but only for 30mins

Hi All, I want to run a script on the hour during a 24 - hour period; easy enough cron will take care of that..however I want the script to only run for only 30mins.. so with the script it knows its 30mins are up so exits. any ideas? Any help, greatly appericated. Thanking you all... (2 Replies)
Discussion started by: Zak
2 Replies
Login or Register to Ask a Question