Manual Page Result
0
Command: sleep | Section: 1 | Source: UNIX v10 | File: sleep.1
SLEEP(1) General Commands Manual SLEEP(1)
NAME
sleep - suspend execution for an interval
SYNOPSIS
sleep time
DESCRIPTION
Sleep suspends execution for time seconds.
EXAMPLES
Execute a command
100 seconds hence.
while :
do
command
sleep 30
done
Repeat a command every 30 seconds.
SEE ALSO
alarm(2), sleep(3)
SLEEP(1)