sleep command off by a second


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers sleep command off by a second
# 1  
Old 04-04-2011
Question sleep command off by a second

Hi Forum
Im using sleep in a while loop goes around 10 times. i feed it a variable with the time i what it to sleep for eg sleep $sleepVal and then print system date and time to screen but sometimes 1 second is added to the time why is this
here my code

Code:
sleepVal=5

 while [ ${counter} -le 10 ]
    do
     printf "%d) %s\n" ${counter} `date +%d-%m-%Y:%R-%S` 
     sleep ${sleepVal}
     counter=`expr ${counter} + 1`
    done

Smilie
any help would be much appreciated and thank you in advance
# 2  
Old 04-04-2011
Your loop contains, in this case, a sleep 5 command. The rest of the loop also requires a little bit of time to run. This is especially true if the OS has another program (like cron) that suddenly starts to run. If you start your script near the beginning of a second you might have enough excess milliseconds to handle everything else. But if you start the loop toward the end of a second that might not be true.
# 3  
Old 04-04-2011
expr is also very inefficient (if every millisecond is a prisoner Smilie).

Code:
$ cat exprTest
count=1000

counter=0
printf "With expr, Start: "
date
while [ $counter -le $count ]; do
  counter=`expr $counter + 1`
done
printf "With expr, End:   "
date
echo $counter

counter=0
printf "Without expr, Start: "
date
while [ $counter -le $count ]; do
  ((counter++))
done
printf "Without expr, End:   "
date
echo $counter


$ ./exprTest
With expr, Start: Mon  4 Apr 2011 22:13:59 CEST
With expr, End:   Mon  4 Apr 2011 22:14:01 CEST
1001
Without expr, Start: Mon  4 Apr 2011 22:14:01 CEST
Without expr, End:   Mon  4 Apr 2011 22:14:01 CEST
1001

# 4  
Old 04-20-2011
sorry for the late reply guys been busy cheers for the anwsersSmilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sleep command

I need help in script. I want my one script execute every time at 6:30 am and i have no cron access. So i am putting sleep command there , Script may took half an hour 35 min , it depend upon queries how much it take time, but that is not issue, So i want according to stop time of... (15 Replies)
Discussion started by: pallvi_mahajan
15 Replies

2. Shell Programming and Scripting

Help with sleep command:

Hi Frnz, I need to execute sleep command but i dont know the definite time. Let me put my req: I am running one shell script and this script creates some lock file in temp dir ...now in my script i want one function to go into sleep mode till this lock file exists..one lock file gone that... (6 Replies)
Discussion started by: gnnsprapa
6 Replies

3. Shell Programming and Scripting

Sleep Command

Hello, Need a little help with the script below. I can't get it to sleep :( I'm trying to get this to check if the process is running and if it is, wait 10 secs and check again. Keep doing this until it's not running and then stop checking and send the email. #!/bin/ksh mailto=`cat... (2 Replies)
Discussion started by: bbbngowc
2 Replies

4. Shell Programming and Scripting

Sleep command

Hi All, i am very new to shall script . i am not that much aware of sleep command , i want to terminate the sleep command after certain time. following is my code. while loop sleep 1800 messag=/status.sql donethe script will be on sleep untill the messag be comes P. here my requirement... (4 Replies)
Discussion started by: mandlysreedhar
4 Replies

5. UNIX for Dummies Questions & Answers

Help with sleep command

sleep 10 & Is this the write line of command to suspend 5 jobs for 10 minutes (6 Replies)
Discussion started by: senyor17
6 Replies

6. Shell Programming and Scripting

sleep command

Hi, Did the sleep command work for hours or only minutes just give description to work on my script waiting for the earliest response (5 Replies)
Discussion started by: thelakbe
5 Replies

7. UNIX for Dummies Questions & Answers

sleep command

Hi All I have a requiremnt to run a script inside another script. here i am pulling the record count from the table in oracle.If record count is greater than 0 the script is executed.The scripts updates the count in the table and again the count is found out and the condition is checked and same... (3 Replies)
Discussion started by: dr46014
3 Replies

8. Shell Programming and Scripting

Sleep Command

I am in need of some help; think I have confused myself. Here is the issue I am faced with. The script log file was fine, the nohup.out file has tens of thousands of lines like illegal use of sleep: sleep seconds So I assume there is something with the seconds calculation in the script... (1 Reply)
Discussion started by: Glove
1 Replies

9. UNIX for Dummies Questions & Answers

sleep command

If I give sleep(50) what does it mean? My program waits for further execution or all my other processes wait? (3 Replies)
Discussion started by: leewar
3 Replies

10. UNIX for Dummies Questions & Answers

How can I get a command to sleep < 1 second?

I am running a number of processes through a kill -15 loop as a temporary fix to some viscious memory leaks. I cannot pass the entire list of processes through the kill at once, because the nature of the monitoring my client has will cause the software to failover. Because of the large number of... (1 Reply)
Discussion started by: mattd
1 Replies
Login or Register to Ask a Question