DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦5cf01f0bd⟧ TextFile

    Length: 543 (0x21f)
    Types: TextFile
    Notes: UNIX file
    Names: »sleep.1«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/man/man1/sleep.1« 

TextFile

.ig
	@(#)sleep.1	2.1	7/1/84
	@(#)Copyright (C) 1983 by National Semiconductor Corp.
..
.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 2147483647 seconds.