Sync usage with man page.
[netbsd-mini2440.git] / usr.sbin / cron / crontab.5
blob11ca75e68b5fff888a252d4736b72e68c9cd4de3
1 .\"     $NetBSD: crontab.5,v 1.12 2009/04/04 16:05:10 perry Exp $
2 .\"
3 .\"/* Copyright 1988,1990,1993,1994 by Paul Vixie
4 .\" * All rights reserved
5 .\" *
6 .\" * Distribute freely, except: don't remove my name from the source or
7 .\" * documentation (don't take credit for my work), mark your changes (don't
8 .\" * get me blamed for your possible bugs), don't alter or remove this
9 .\" * notice.  May be sold if buildable source is provided to buyer.  No
10 .\" * warrantee of any kind, express or implied, is included with this
11 .\" * software; use at your own risk, responsibility for damages (if any) to
12 .\" * anyone resulting from the use of this software rests entirely with the
13 .\" * user.
14 .\" *
15 .\" * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
16 .\" * I'll try to keep a version up to date.  I can be reached as follows:
17 .\" * Paul Vixie          <paul@vix.com>          uunet!decwrl!vixie!paul
18 .\" */
19 .\"
20 .\" Id: crontab.5,v 2.4 1994/01/15 20:43:43 vixie Exp
21 .\"
22 .Dd April 4, 2009
23 .Dt CRONTAB 5
24 .Os
25 .Sh NAME
26 .Nm crontab
27 .Nd tables for driving cron
28 .Sh DESCRIPTION
30 .Nm
31 file contains instructions to the
32 .Xr cron 8
33 daemon of the general form:
34 .Dq run this command at this time on this date .
35 Each user has their own crontab, and commands in any given crontab
36 will be executed as the user who owns the crontab.
37 Uucp and News will usually have their own crontabs, eliminating
38 the need for explicitly running
39 .Xr su 1
40 as part of a cron command.
41 .Pp
42 Blank lines and leading spaces and tabs are ignored.
43 Lines whose first non-space character is a pound-sign
44 .Pq Sq #
45 are comments, and are ignored.
46 Note that comments are not allowed on the same line as cron commands, since
47 they will be taken to be part of the command.
48 Similarly, comments are not
49 allowed on the same line as environment variable settings.
50 .Pp
51 An active line in a crontab will be either an environment setting
52 or a cron command.
53 An environment setting is of the form,
54 .Bd -literal
55     name = value
56 .Ed
57 where the spaces around the equal-sign
58 .Pq Sq =
59 are optional, and any subsequent non-leading spaces in
60 .Ar value
61 will be part of the value assigned to
62 .Ar name .
63 The
64 .Ar value
65 string may be placed in quotes (single or double, but matching) to
66 preserve leading or trailing blanks.
67 The
68 .Ar name
69 string may also be placed in quotes (single or double, but matching)
70 to preserve leading, trailing or inner blanks.
71 .Pp
72 Several environment variables are set up automatically by the
73 .Xr cron 8
74 daemon.
75 .Ev SHELL
76 is set to
77 .Pa /bin/sh ,
78 and
79 .Ev LOGNAME
80 and
81 .Ev HOME
82 are set from the
83 .Pa /etc/passwd
84 line of the crontab's owner.
85 .Ev HOME
86 and
87 .Ev SHELL
88 may be overridden by settings in the crontab;
89 .Ev LOGNAME
90 may not.
91 .Pp
92 (Another note: the
93 .Ev LOGNAME
94 variable is sometimes called
95 .Ev USER
96 on BSD systems...  on these systems,
97 .Ev USER
98 will be set also.)
99 .Pp
100 In addition to
101 .Ev LOGNAME ,
102 .Ev HOME ,
104 .Ev SHELL ,
105 .Xr cron 8
106 will look at
107 .Ev MAILTO
108 if it has any reason to send mail as a result of running commands in
109 .Dq this
110 crontab.
112 .Ev MAILTO
113 is defined (and non-empty), mail is sent to the user so named.
115 .Ev MAILTO
116 is defined but empty
117 .Pq Ev MAILTO Ns = Ns \&"" ,
118 no mail will be sent.
119 Otherwise mail is sent to the owner of the crontab.
120 This option is useful if you decide on
121 .Xr mail 1
122 instead of
123 .Xr sendmail 1
124 as your mailer when you install cron --
125 .Xr mail 1
126 doesn't do aliasing, and UUCP usually doesn't read its mail.
128 In order to provide finer control over when jobs execute, users
129 can also set the environment variables
130 .Ev CRON_TZ
132 .Ev CRON_WITHIN .
134 .Ev CRON_TZ
135 variable can be set to an alternate time zone in order to affect
136 when the job is run.
137 Note that this only affects the scheduling of the job, not the time
138 zone that the job perceives when it is run.
140 .Ev CRON_TZ
141 is defined but empty
142 .Pq Ev CRON_TZ Ns = Ns \&"" ,
143 jobs are scheduled with respect to the local time zone.
146 .Ev CRON_WITHIN
147 variable should indicate the number of seconds within a job's
148 scheduled time that it should still be run.
149 On a heavily loaded system, or on a system that has just been
150 .Dq woken up ,
151 jobs will sometimes start later than originally intended, and by
152 skipping non-critical jobs because of delays, system load can be
153 lightened.
155 .Ev CRON_WITHIN
156 is defined but empty
157 .Pa Ev CRON_WITHIN Ns = Ns \&""
158 or set to some non-positive value (0, a negative number, or a
159 non-numeric string), it is treated as if it was unset.
161 The format of a cron command is very much the V7 standard, with a
162 number of upward-compatible extensions.
163 Each line has five time and date fields, followed by a user name
164 if this is the system crontab file, followed by a command.
165 Commands are executed by
166 .Xr cron 8
167 when the minute, hour, and month of year fields match the current
168 time,
169 .Em and
170 when at least one of the two day fields (day of month, or day of week)
171 match the current time (see
172 .Dq Note
173 below).
174 .Xr cron 8
175 examines cron entries once every minute.
176 The time and date fields are:
177 .Bl -column -offset indent "day of month" "0-7 (0 or 7 is Sun, or use names)"
178 .It Em field Ta Em allowed values
179 .It minute Ta 0-59
180 .It hour Ta 0-23
181 .It day of month Ta 1-31
182 .It month Ta 1-12 (or names, see below)
183 .It day of week Ta 0-7 (0 or 7 is Sun, or use names)
186 A field may be an asterisk
187 .Pq Sq * ,
188 which always stands for
189 .Dq first\-last .
191 Ranges of numbers are allowed.
192 Ranges are two numbers separated with a hyphen.
193 The specified range is inclusive.
194 For example,
195 .Dq 8-11
196 for an
197 .Dq hours
198 entry specifies execution at hours 8, 9, 10, and 11.
200 A field may begin with a question mark
201 .Pq Sq ? ,
202 which indicates a single value randomly selected when the crontab
203 file is read.
204 If the field contains only a question mark, the value is randomly
205 selected from the range of all possible values for the field.
206 If the question mark precedes a range, the value is randomly selected
207 from the range.
208 For example,
209 .Dq ? ?2-5 * * *
210 specifies that a task will be performed daily between 2:00am and
211 and 5:59am at a time randomly selected when the crontab file is
212 first read.
213 As just one example, this feature can be used to prevent a large
214 number of hosts from contacting a server simultaneously and
215 overloading it by staggering the time at which a download script
216 is executed.
218 Lists are allowed.
219 A list is a set of numbers (or ranges) separated by commas.
220 Examples:
221 .Dq 1,2,5,9 ,
222 .Dq 0-4,8-12 .
224 Step values can be used in conjunction with ranges.
225 Following a range with
226 .Dq / Ns Aq number
227 specifies skips of the number's value through the range.
228 For example,
229 .Dq 0-23/2
230 can be used in the hours field to specify command execution every
231 other hour (the alternative in the V7 standard is
232 .Dq 0,2,4,6,8,10,12,14,16,18,20,22 ) .
233 Steps are also permitted after an asterisk, so if you want to say
234 .Dq every two hours ,
235 just use
236 .Dq */2 .
238 Names can also be used for the
239 .Dq month
241 .Dq day of week
242 fields.
243 Use the first three letters of the particular day or month (case
244 doesn't matter).
245 Ranges or lists of names are not allowed.
248 .Dq sixth
249 field (the rest of the line) specifies the command to be run.
250 The entire command portion of the line, up to a newline or percent
251 signs
252 .Pq Sq % ,
253 will be executed by
254 .Xr sh 1
255 or by the shell specified in the
256 .Ev SHELL
257 variable of the cronfile.
258 Percent signs
259 .Pq Sq %
260 in the command, unless escaped with backslash
261 .Pq Sq \e ,
262 will be changed into newline characters, and all data after the
263 first % will be sent to the command as standard input.
265 .Em Note :
266 The day of a command's execution can be specified by two fields
267 \(em day of month, and day of week.
268 If both fields are restricted (i.e., aren't *), the command will
269 be run when
270 .Em either
271 field matches the current time.
272 For example,
273 .Dq 30 4 1,15 * 5
274 would cause a command to be run at 4:30 am on the 1st and 15th of
275 each month, plus every Friday.
277 Instead of the first five fields, one of eight special strings may appear:
278 .Bl -column -offset indent "@annually" "Run once a month, 0 0 1 * *."
279 .It Sy string Ta Sy meaning
280 .It @reboot Ta Run once, at startup.
281 .It @yearly Ta Run once a year, Dq 0 0 1 1 * .
282 .It @annually Ta (same as @yearly)
283 .It @monthly Ta Run once a month, Dq 0 0 1 * * .
284 .It @weekly Ta Run once a week, Dq 0 0 * * 0 .
285 .It @daily Ta Run once a day, Dq 0 0 * * * .
286 .It @midnight Ta (same as @daily)
287 .It @hourly Ta Run once an hour, Dq 0 * * * * .
289 .Ss EXAMPLE CRON FILE
290 .Bd -literal
291 # use /bin/sh to run commands, no matter what /etc/passwd says
292 SHELL=/bin/sh
293 # mail any output to `paul', no matter whose crontab this is
294 MAILTO=paul
296 # run five minutes after midnight, every day
297 5 0 * * *       $HOME/bin/daily.job \*[Gt]\*[Gt] $HOME/tmp/out 2\*[Gt]\*[Am]1
298 # run at 2:15pm on the first of every month -- output mailed to paul
299 15 14 1 * *     $HOME/bin/monthly
300 # run at 10 pm on weekdays, annoy Joe
301 0 22 * * 1-5    mail -s "It's 10pm" joe%Joe,%%Where are your kids?%
302 23 0-23/2 * * * echo "run 23 minutes after midn, 2am, 4am ..., everyday"
303 5 4 * * sun     echo "run at 5 after 4 every sunday"
304 ? ?2-4 1,15 * * echo "random between 2am-4:59am on the 1st and 15th"
306 .Sh SEE ALSO
307 .Xr crontab 1 ,
308 .Xr cron 8
309 .Sh STANDARDS
310 When specifying day of week, both day 0 and day 7 will be considered
311 Sunday.
312 BSD and ATT seem to disagree about this.
314 Lists and ranges are allowed to co-exist in the same field.
315 .Dq 1-3,7-9
316 would be rejected by ATT or BSD cron -- they want to see
317 .Dq 1-3
319 .Dq 7,8,9
320 ONLY.
322 Ranges can include
323 .Dq steps ,
325 .Dq 1-9/2
326 is the same as
327 .Dq 1,3,5,7,9 .
329 Names of months or days of the week can be specified by name.
331 Environment variables can be set in the crontab.
332 In BSD or ATT, the environment handed to child processes is basically
333 the one from
334 .Pa /etc/rc .
336 Command output is mailed to the crontab owner (BSD can't do this),
337 can be mailed to a person other than the crontab owner (SysV can't
338 do this), or the feature can be turned off and no mail will be sent
339 at all (SysV can't do this either).
341 All of the
342 .Sq @
343 commands that can appear in place of the first five fields are
344 extensions.
345 .Sh AUTHORS
346 .An Paul Vixie Aq paul@vix.com