]> git.saurik.com Git - apple/shell_cmds.git/blame - sleep/sleep.1
shell_cmds-118.tar.gz
[apple/shell_cmds.git] / sleep / sleep.1
CommitLineData
44bd5ea7
A
1.\" $NetBSD: sleep.1,v 1.11 1997/09/14 07:31:56 lukem Exp $
2.\"
3.\" Copyright (c) 1990, 1993, 1994
4.\" The Regents of the University of California. All rights reserved.
5.\"
6.\" This code is derived from software contributed to Berkeley by
7.\" the Institute of Electrical and Electronics Engineers, Inc.
8.\"
9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions
11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright
13.\" notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright
15.\" notice, this list of conditions and the following disclaimer in the
16.\" documentation and/or other materials provided with the distribution.
17.\" 3. All advertising materials mentioning features or use of this software
18.\" must display the following acknowledgement:
19.\" This product includes software developed by the University of
20.\" California, Berkeley and its contributors.
21.\" 4. Neither the name of the University nor the names of its contributors
22.\" may be used to endorse or promote products derived from this software
23.\" without specific prior written permission.
24.\"
25.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35.\" SUCH DAMAGE.
36.\"
37.\" @(#)sleep.1 8.3 (Berkeley) 4/18/94
38.\"
39.Dd April 18, 1994
40.Dt SLEEP 1
41.Os
42.Sh NAME
43.Nm sleep
44.Nd suspend execution for an interval of time
45.Sh SYNOPSIS
46.Nm
47.Ar seconds
48.Sh DESCRIPTION
49The
50.Nm
51utility
52suspends execution for a minimum of
53.Ar seconds .
54It is usually used to schedule the execution of other commands (see
55.Sx EXAMPLES
56below).
57.Pp
58The
59.Nm
60utility exits with one of the following values:
61.Bl -tag -width flag
62.It Li \&0
63On successful completion, or if the signal
64.Dv SIGALRM
65was received.
66.It Li \&>\&0
67An error occurred.
68.El
44bd5ea7
A
69.Sh EXAMPLES
70To schedule the execution of a command for
71.Va x
72number seconds later:
73.Pp
74.Dl (sleep 1800; sh command_file >& errors)&
75.Pp
76This incantation would wait a half hour before
77running the script command_file. (See the
78.Xr at 1
79utility.)
80.Pp
81To reiteratively run a command (with the
82.Xr csh 1 ) :
83.Pp
84.Bd -literal -offset indent -compact
85while (1)
86 if (! -r zzz.rawdata) then
87 sleep 300
88 else
89 foreach i (`ls *.rawdata`)
90 sleep 70
91 awk -f collapse_data $i >> results
92 end
93 break
94 endif
95end
96.Ed
97.Pp
98The scenario for a script such as this might be: a program currently
99running is taking longer than expected to process a series of
100files, and it would be nice to have
101another program start processing the files created by the first
102program as soon as it is finished (when zzz.rawdata is created).
103The script checks every five minutes for the file zzz.rawdata,
104when the file is found, then another portion processing
105is done courteously by sleeping for 70 seconds in between each
106awk job.
107.Sh SEE ALSO
3e62a7a7 108.Xr setitimer 2 ,
44bd5ea7
A
109.Xr sleep 3 ,
110.Xr at 1
111.Sh STANDARDS
112The
113.Nm
114command is expected to be
115.St -p1003.2
116compatible.