| Linux / Unix Command: sleep |
NAME
sleep - Sleep for the specified number of secondsSYNOPSIS
#include <unistd.h> unsigned int sleep(unsigned int seconds);
DESCRIPTION
sleep() makes the current process sleep until seconds seconds have elapsed or a signal arrives which is not ignored.RETURN VALUE
Zero if the requested time has elapsed, or the number of seconds left to sleep.CONFORMING TO
POSIX.1SEE ALSO
signal(2), alarm(2)
Important: Use the man command (% man) to see how a command is used on your particular computer.

