Research V7 development
authorKen Thompson <ken@research.uucp>
Wed, 10 Jan 1979 20:15:48 +0000 (15:15 -0500)
committerKen Thompson <ken@research.uucp>
Wed, 10 Jan 1979 20:15:48 +0000 (15:15 -0500)
Work on file usr/man/man1/sleep.1
Work on file usr/man/man1/size.1

Co-Authored-By: Dennis Ritchie <dmr@research.uucp>
Synthesized-from: v7

usr/man/man1/size.1 [new file with mode: 0644]
usr/man/man1/sleep.1 [new file with mode: 0644]

diff --git a/usr/man/man1/size.1 b/usr/man/man1/size.1
new file mode 100644 (file)
index 0000000..a805978
--- /dev/null
@@ -0,0 +1,18 @@
+.TH SIZE 1 
+.SH NAME
+size \- size of an object file
+.SH SYNOPSIS
+.B size
+[ object ... ]
+.SH DESCRIPTION
+.I Size
+prints the (decimal) number of bytes
+required by the
+text, data, and bss
+portions, and their sum in octal and decimal,
+of each object-file argument.
+If no file is specified,
+.B a.out
+is used.
+.SH "SEE ALSO"
+a.out(5)
diff --git a/usr/man/man1/sleep.1 b/usr/man/man1/sleep.1
new file mode 100644 (file)
index 0000000..546ce20
--- /dev/null
@@ -0,0 +1,32 @@
+.TH SLEEP 1 
+.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 65536 seconds.