DOKK / manpages / debian 12 / 9base / sleep.1plan9.en
SLEEP(1plan9) SLEEP(1plan9)

sleep - suspend execution for an interval

sleep time

Sleep suspends execution for time seconds.

Execute a command 100 seconds hence.

{sleep 100; command}&
    

Repeat a command every 30 seconds.

while (){
	command
	sleep 30
}
    

/src/cmd/sleep.c

sleep(3)