Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
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.

	    {sleep 100; command}&

     Repeat a command every 30 seconds.

	    while (){
		 command
		 sleep 30
	    }

SOURCE
     /src/cmd/sleep.c

SEE ALSO
     sleep((3))

									SLEEP(1)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=sleep&sektion=1&manpath=FreeBSD+Ports+15.1.quarterly>

home | help