From: Ken Thompson Date: Wed, 10 Jan 1979 20:15:48 +0000 (-0500) Subject: Research V7 development X-Git-Tag: Bell-32V^2~350 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/c1c0cbf7e3abe54cfa932617bdf3124f14c83da3 Research V7 development Work on file usr/man/man1/sleep.1 Work on file usr/man/man1/size.1 Co-Authored-By: Dennis Ritchie Synthesized-from: v7 --- diff --git a/usr/man/man1/size.1 b/usr/man/man1/size.1 new file mode 100644 index 0000000000..a80597859b --- /dev/null +++ b/usr/man/man1/size.1 @@ -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 index 0000000000..546ce200b5 --- /dev/null +++ b/usr/man/man1/sleep.1 @@ -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.