]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/sleep/sleep.1
MFC r368207,368607:
[FreeBSD/stable/10.git] / bin / sleep / sleep.1
1 .\"-
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.
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
33 .\" $FreeBSD$
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
47 command
48 suspends execution for a minimum of
49 .Ar seconds .
50 .Pp
51 If the
52 .Nm
53 command receives a signal, it takes the standard action.
54 When the
55 .Dv SIGINFO
56 signal is received, the estimate of the amount of seconds left to
57 sleep is printed on the standard output.
58 .Sh IMPLEMENTATION NOTES
59 The
60 .Dv SIGALRM
61 signal is not handled specially by this implementation.
62 .Pp
63 The
64 .Nm
65 command allows and honors a non-integer number of seconds to sleep
66 in any form acceptable by
67 .Xr strtod 3 .
68 This is a non-portable extension, and its use will nearly guarantee that
69 a shell script will not execute properly on another system.
70 .Sh EXIT STATUS
71 .Ex -std
72 .Sh EXAMPLES
73 To schedule the execution of a command for
74 .Va x
75 number seconds later (with
76 .Xr csh 1 ) :
77 .Pp
78 .Dl (sleep 1800; sh command_file >& errors)&
79 .Pp
80 This incantation would wait a half hour before
81 running the script command_file.
82 (See the
83 .Xr at 1
84 utility.)
85 .Pp
86 To reiteratively run a command (with the
87 .Xr csh 1 ) :
88 .Pp
89 .Bd -literal -offset indent -compact
90 while (1)
91         if (! -r zzz.rawdata) then
92                 sleep 300
93         else
94                 foreach i (`ls *.rawdata`)
95                         sleep 70
96                         awk -f collapse_data $i >> results
97                 end
98                 break
99         endif
100 end
101 .Ed
102 .Pp
103 The scenario for a script such as this might be: a program currently
104 running is taking longer than expected to process a series of
105 files, and it would be nice to have
106 another program start processing the files created by the first
107 program as soon as it is finished (when zzz.rawdata is created).
108 The script checks every five minutes for the file zzz.rawdata,
109 when the file is found, then another portion processing
110 is done courteously by sleeping for 70 seconds in between each
111 awk job.
112 .Sh SEE ALSO
113 .Xr nanosleep 2 ,
114 .Xr sleep 3
115 .Sh STANDARDS
116 The
117 .Nm
118 command is expected to be
119 .St -p1003.2
120 compatible.
121 .Sh HISTORY
122 A
123 .Nm
124 command appeared in
125 .At v4 .