|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Sleep less than 1 second
Does anyone know a way to sleep less than 1 second?
Sometimes when I write scripts that iterates a loop many times it would be nice to slow things down, but sometimes 1 second is too much. |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
Quote:
|
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
usleep in C code.
|
|
#4
|
|||
|
|||
|
I dont have usleep in my system, which is AIX 5.2.
Is there a compiled version of usleep to download. I think I'm not able to compile it myself. |
| Sponsored Links | |
|
|
#5
|
||||
|
||||
|
If you have perl try:
perl -e 'select(undef,undef,undef,.1)' That .1 means .1 seconds. |
| Sponsored Links | |
|
|
#6
|
|||
|
|||
|
Quote:
Thanks a lot. |
| Sponsored Links | |
|
|
#7
|
|||
|
|||
|
IT's not hard to measure the elapsed time: Put Perderabo's code in a script, call it usleep.sh Code:
time usleep.sh will give you something like this: Code:
kcsdev:/home/jmcnama> time usleep.sh real 0m0.18s user 0m0.03s sys 0m0.05s real is the elapsed time. |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Wrapping 'sleep' with my 'resleep' function (Resettable sleep) | deckard | Shell Programming and Scripting | 5 | 09-28-2009 01:58 PM |
| sleep working | meetbhattu | UNIX for Advanced & Expert Users | 2 | 10-29-2007 05:05 PM |
| Sleep under one second | Scoogie | Shell Programming and Scripting | 5 | 08-14-2002 08:10 AM |
| sleep | Anna | UNIX for Dummies Questions & Answers | 5 | 07-10-2001 11:52 PM |
|
|