manual page distributed with 4.1BSD
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 30 Apr 1985 08:56:12 +0000 (00:56 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 30 Apr 1985 08:56:12 +0000 (00:56 -0800)
SCCS-vsn: bin/sleep/sleep.1 4.1

usr/src/bin/sleep/sleep.1 [new file with mode: 0644]

diff --git a/usr/src/bin/sleep/sleep.1 b/usr/src/bin/sleep/sleep.1
new file mode 100644 (file)
index 0000000..009ae18
--- /dev/null
@@ -0,0 +1,35 @@
+.\"    @(#)sleep.1     4.1 (Berkeley) %G%
+.\"
+.TH SLEEP 1 
+.AT 3
+.SH NAME
+sleep \- suspend execution for an interval
+.SH SYNOPSIS
+.B sleep
+time
+.SH DESCRIPTION
+.I Sleep
+suspends execution for
+.I time
+seconds.
+It is used to execute a command
+after a certain amount of time as in:
+.PP
+       (sleep 105; command)&
+.PP
+or to execute a command every so often, as in:
+.PP
+       while true
+.br
+       do
+.br
+               command
+.br
+               sleep 37
+.br
+       done
+.SH "SEE ALSO"
+alarm(2), sleep(3)
+.SH BUGS
+.I Time
+must be less than 2147483647 seconds.