No empty .Rs/.Re
[netbsd-mini2440.git] / usr.sbin / cron / crontab.1
blob392ac258ff70b9eefba79badfa9bb009a80c6f19
1 .\"     $NetBSD: crontab.1,v 1.6 2002/01/19 03:09:06 wiz Exp $
2 .\"
3 .\"/* Copyright 1988,1990,1993 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.1,v 2.4 1993/12/31 10:47:33 vixie Exp
21 .\"
22 .TH CRONTAB 1 "29 December 1993"
23 .UC 4
24 .SH NAME
25 crontab \- maintain crontab files for individual users (V3)
26 .SH SYNOPSIS
27 crontab [ -u user ] file
28 .br
29 crontab [ -u user ] [ -l | -r | -e ]
30 .SH DESCRIPTION
31 .I Crontab
32 is the program used to install, deinstall or list the tables
33 used to drive the
34 .IR cron (8)
35 daemon in Vixie Cron.  Each user can have their own crontab, and though
36 these are files in /var, they are not intended to be edited directly.
37 .PP
38 If the
39 .I allow
40 file exists, then you must be listed therein in order to be allowed to use
41 this command.  If the
42 .I allow
43 file does not exist but the
44 .I deny
45 file does exist, then you must \fBnot\fR be listed in the
46 .I deny
47 file in order to use this command.  If neither of these files exists, then
48 depending on site-dependent configuration parameters, only the super user
49 will be allowed to use this command, or all users will be able to use this
50 command.
51 .PP
52 The default maximum size for a crontab is 256 kilobytes, but this may be
53 changed for all users on the system by putting the desired maximum size
54 (in bytes) in the
55 .I maxtabsize
56 file.
57 .PP
58 If the
59 .I -u
60 option is given, it specifies the name of the user whose crontab is to be
61 tweaked.  If this option is not given,
62 .I crontab
63 examines "your" crontab, i.e., the crontab of the person executing the
64 command.  Note that
65 .IR su (1)
66 can confuse
67 .I crontab
68 and that if you are running inside of
69 .IR su (1)
70 you should always use the
71 .I -u
72 option for safety's sake.
73 .PP
74 The first form of this command is used to install a new crontab from some
75 named file or standard input if the pseudo-filename ``-'' is given.
76 .PP
77 The
78 .I -l
79 option causes the current crontab to be displayed on standard output.
80 .PP
81 The
82 .I -r
83 option causes the current crontab to be removed.
84 .PP
85 The
86 .I -e
87 option is used to edit the current crontab using the editor specified by
88 the \s-1VISUAL\s+1 or \s-1EDITOR\s+1 environment variables.  After you exit
89 from the editor, the modified crontab will be installed automatically.
90 .SH "SEE ALSO"
91 crontab(5), cron(8)
92 .SH FILES
93 .nf
94 /var/cron/allow
95 /var/cron/deny
96 /var/cron/maxtabsize
97 .fi
98 .SH STANDARDS
99 The
100 .I crontab
101 command conforms to IEEE Std1003.2-1992 (``POSIX'').  This new command syntax
102 differs from previous versions of Vixie Cron, as well as from the classic
103 SVR3 syntax.
104 .SH DIAGNOSTICS
105 A fairly informative usage message appears if you run it with a bad command
106 line.
107 .SH AUTHOR
109 Paul Vixie \*[Lt]paul@vix.com\*[Gt]