No empty .Rs/.Re
[netbsd-mini2440.git] / usr.sbin / ac / ac.8
blob2f166e9d5f713148dffbbdf1567f0cc53b4d0f5a
1 .\" $NetBSD: ac.8,v 1.15 2003/06/27 22:53:52 wiz Exp $
2 .\"
3 .\" Copyright (c) 1980, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\" Copyright (c) 1994 Simon J. Gerraty
6 .\" Copyright (c) 1994 Christopher G. Demetriou
7 .\" All rights reserved.
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 acknowledgements:
19 .\"     This product includes software developed by the University of
20 .\"     California, Berkeley and its contributors.
21 .\"      This product includes software developed by Christopher G. Demetriou.
22 .\" 4. Neither the name of the University nor the names of its contributors
23 .\"    may be used to endorse or promote products derived from this software
24 .\"    without specific prior written permission.
25 .\"
26 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" SUCH DAMAGE.
37 .\"
38 .\"     @(#)ac.8        8.2 (Berkeley) 4/19/94
39 .\"
40 .Dd April 19, 1994
41 .Dt AC 8
42 .Os
43 .Sh NAME
44 .Nm ac
45 .Nd display connect time accounting
46 .Sh SYNOPSIS
47 .Nm
48 .Op Fl d | p
49 .Op Fl t Ar tty
50 .Op Fl w Ar file
51 .Op Ar users ...
52 .Sh DESCRIPTION
53 If the file
54 .Pa /var/log/wtmp
55 exists,
56 a record of individual
57 login and logout times are written to it by
58 .Xr login 1
59 and
60 .Xr init 8 ,
61 respectively.
62 The program
63 .Nm
64 examines these
65 records and writes the accumulated connect time for all logins to the
66 standard output.
67 .Pp
68 Options available:
69 .Bl -tag -width indentXXX
70 .It Fl d
71 Display the connect times in 24 hour chunks.
72 .It Fl p
73 Display individual user totals.
74 .It Fl t Ar tty
75 Only do accounting logins on certain ttys.  The
76 .Ar tty
77 specification can start with
78 .Ql \&!
79 to indicate not this
80 .Ar tty
81 and end with
82 .Ql *
83 to indicate all similarly named ttys.
84 Multiple
85 .Fl t
86 flags may be specified.
87 .It Fl w Ar file
88 Read raw connect time data from
89 .Ar file
90 instead of the default file
91 .Pa /var/log/wtmp .
92 .It Ar users ...
93 Display totals for the given individuals
94 only.
95 .El
96 .Pp
97 If no arguments are given,
98 .Nm
99 displays the total amount of login time for all active accounts on the
100 system.
102 The default
103 .Pa wtmp
104 file is an infinitely increasing file
105 unless frequently truncated.  This is normally
106 done by the daily daemon scripts scheduled by
107 .Xr cron 8 ,
108 which rename and rotate the
109 .Pa wtmp
110 files before truncating them (and keep about a week's worth on hand).
111 No login times are collected, however, if the file does not exist.
113 For example,
114 .Bd -literal -offset indent
115 ac -p -t "ttyd*" \*[Gt] modems
116 ac -p -t "!ttyd*" \*[Gt] other
119 allows times recorded in
120 .Pa modems
121 to be charged out at a different rate than
122 .Pa other .
126 utility exits 0 on success, and \*[Gt]0 if a fatal error occurs.
127 .Sh FILES
128 .Bl -tag -width /var/log/wtmp.[0-7] -compact
129 .It Pa /var/log/wtmp
130 connect time accounting file
131 .It Pa /var/log/wtmp.[0-7]
132 rotated files
134 .Sh SEE ALSO
135 .Xr login 1 ,
136 .Xr utmp 5 ,
137 .Xr init 8 ,
138 .Xr sa 8
139 .Sh HISTORY
142 command appeared in
143 .At v6 .
144 This version of
146 was written for
147 .Nx 1.0
148 from the specification provided by various systems' manual pages.