other sections
SLEEP(1plan9) | SLEEP(1plan9) |
NAME¶
sleep - suspend execution for an intervalSYNOPSIS¶
sleep timeDESCRIPTION¶
Sleep suspends execution for time seconds.EXAMPLES¶
Execute a command 100 seconds hence.-
{sleep 100; command}&
Repeat a command every 30 seconds.
-
while (){ command sleep 30 }