]>
Commit | Line | Data |
---|---|---|
ddb4a88b | 1 | .\"- |
44bd5ea7 A |
2 | .\" Copyright (c) 1990, 1993, 1994 |
3 | .\" The Regents of the University of California. All rights reserved. | |
4 | .\" | |
5 | .\" This code is derived from software contributed to Berkeley by | |
6 | .\" the Institute of Electrical and Electronics Engineers, Inc. | |
7 | .\" | |
8 | .\" Redistribution and use in source and binary forms, with or without | |
9 | .\" modification, are permitted provided that the following conditions | |
10 | .\" are met: | |
11 | .\" 1. Redistributions of source code must retain the above copyright | |
12 | .\" notice, this list of conditions and the following disclaimer. | |
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer in the | |
15 | .\" documentation and/or other materials provided with the distribution. | |
44bd5ea7 A |
16 | .\" 4. Neither the name of the University nor the names of its contributors |
17 | .\" may be used to endorse or promote products derived from this software | |
18 | .\" without specific prior written permission. | |
19 | .\" | |
20 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
21 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
22 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
23 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
24 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
25 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
26 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
27 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
30 | .\" SUCH DAMAGE. | |
31 | .\" | |
32 | .\" @(#)sleep.1 8.3 (Berkeley) 4/18/94 | |
ddb4a88b | 33 | .\" $FreeBSD: src/bin/sleep/sleep.1,v 1.22 2005/01/16 16:41:59 ru Exp $ |
44bd5ea7 A |
34 | .\" |
35 | .Dd April 18, 1994 | |
36 | .Dt SLEEP 1 | |
37 | .Os | |
38 | .Sh NAME | |
39 | .Nm sleep | |
40 | .Nd suspend execution for an interval of time | |
41 | .Sh SYNOPSIS | |
42 | .Nm | |
43 | .Ar seconds | |
44 | .Sh DESCRIPTION | |
45 | The | |
46 | .Nm | |
ddb4a88b | 47 | command |
44bd5ea7 A |
48 | suspends execution for a minimum of |
49 | .Ar seconds . | |
44bd5ea7 | 50 | .Pp |
ddb4a88b | 51 | If the |
44bd5ea7 | 52 | .Nm |
ddb4a88b A |
53 | command receives a signal, it takes the standard action. |
54 | .Sh IMPLEMENTATION NOTES | |
55 | The | |
44bd5ea7 | 56 | .Dv SIGALRM |
ddb4a88b A |
57 | signal is not handled specially by this implementation. |
58 | .Pp | |
59 | The | |
60 | .Nm | |
61 | command will accept and honor a non-integer number of specified seconds | |
62 | (with a | |
63 | .Ql .\& | |
64 | character as a decimal point). | |
65 | .Bf Sy | |
66 | This is a non-portable extension, and its use will nearly guarantee that | |
67 | a shell script will not execute properly on another system. | |
68 | .Ef | |
69 | .Sh EXIT STATUS | |
70 | .Ex -std | |
44bd5ea7 A |
71 | .Sh EXAMPLES |
72 | To schedule the execution of a command for | |
73 | .Va x | |
ddb4a88b A |
74 | number seconds later (with |
75 | .Xr csh 1 ) : | |
44bd5ea7 A |
76 | .Pp |
77 | .Dl (sleep 1800; sh command_file >& errors)& | |
78 | .Pp | |
79 | This incantation would wait a half hour before | |
ddb4a88b A |
80 | running the script command_file. |
81 | (See the | |
44bd5ea7 A |
82 | .Xr at 1 |
83 | utility.) | |
84 | .Pp | |
85 | To reiteratively run a command (with the | |
86 | .Xr csh 1 ) : | |
87 | .Pp | |
88 | .Bd -literal -offset indent -compact | |
89 | while (1) | |
90 | if (! -r zzz.rawdata) then | |
91 | sleep 300 | |
92 | else | |
93 | foreach i (`ls *.rawdata`) | |
94 | sleep 70 | |
95 | awk -f collapse_data $i >> results | |
96 | end | |
97 | break | |
98 | endif | |
99 | end | |
100 | .Ed | |
101 | .Pp | |
102 | The scenario for a script such as this might be: a program currently | |
103 | running is taking longer than expected to process a series of | |
104 | files, and it would be nice to have | |
105 | another program start processing the files created by the first | |
106 | program as soon as it is finished (when zzz.rawdata is created). | |
107 | The script checks every five minutes for the file zzz.rawdata, | |
108 | when the file is found, then another portion processing | |
109 | is done courteously by sleeping for 70 seconds in between each | |
110 | awk job. | |
111 | .Sh SEE ALSO | |
ddb4a88b A |
112 | .Xr nanosleep 2 , |
113 | .Xr sleep 3 | |
44bd5ea7 A |
114 | .Sh STANDARDS |
115 | The | |
116 | .Nm | |
117 | command is expected to be | |
118 | .St -p1003.2 | |
119 | compatible. | |
ddb4a88b A |
120 | .Sh HISTORY |
121 | A | |
122 | .Nm | |
123 | command appeared in | |
124 | .At v4 . |