1SLEEP(1) General Commands Manual SLEEP(1)
23
4
NAME
6sleep - suspend execution for an interval
7
SYNOPSIS
9sleep time
10
DESCRIPTION
12Sleep suspends execution for time seconds. It is used to execute a
13command after a certain amount of time as in:
1415
(sleep 105; command)&
1617
or to execute a command every so often, as in:
1819
while true
20do
21command
22sleep 37
23done
24
SEE ALSO
26alarm(2), sleep(3)
27
BUGS
29Time must be less than 65536 seconds.
3031
32
33
SLEEP(1)