xref: /plan9/sys/man/1/sleep (revision d649fdd7c3325804591fcdb7d7f029006de722f2)
SLEEP 1
NAME
sleep - suspend execution for an interval
SYNOPSIS
sleep time
DESCRIPTION
Sleep suspends execution for time seconds. Time may be floating-point.
EXAMPLES
Execute a command 100 seconds hence.
.EX {sleep 100; command}&

Repeat a command every 30 seconds.

.EX while (){ command sleep 30 }
SOURCE
/sys/src/cmd/sleep.c
"SEE ALSO"
sleep (2)