]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/last/last.1
ssh: Update to OpenSSH 9.7p1
[FreeBSD/FreeBSD.git] / usr.bin / last / last.1
1 .\" Copyright (c) 1980, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd January 9, 2021
29 .Dt LAST 1
30 .Os
31 .Sh NAME
32 .Nm last
33 .Nd indicate last logins of users and ttys
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl -libxo
37 .Op Fl swy
38 .Oo
39 .Fl d
40 .Sm off
41 .Op Oo Ar CC Oc Ar YY
42 .Op Ar MM DD
43 .Ar hh mm
44 .Op Ar .SS
45 .Sm on
46 .Oc
47 .Op Fl f Ar file
48 .Op Fl h Ar host
49 .Op Fl n Ar maxrec
50 .Op Fl t Ar tty
51 .Op Ar user ...
52 .Sh DESCRIPTION
53 The
54 .Nm
55 utility will either list the sessions of specified
56 .Ar users ,
57 .Ar ttys ,
58 and
59 .Ar hosts ,
60 in reverse time order,
61 or list the users logged in at a specified date and time.
62 Each line of output contains
63 the user name, the tty from which the session was conducted, any
64 hostname, the start and stop times for the session, and the duration
65 of the session.
66 If the session is still continuing or was cut short by
67 a crash or shutdown,
68 .Nm
69 will so indicate.
70 .Pp
71 The following options are available:
72 .Bl -tag -width indent-two
73 .It Fl -libxo
74 Generate output via
75 .Xr libxo 3
76 in a selection of different human and machine readable formats.
77 See
78 .Xr xo_parse_args 3
79 for details on command line arguments.
80 .It Fl d Ar date
81 Specify the snapshot date and time.
82 All users logged in at the snapshot date and time will
83 be reported.
84 This may be used with the
85 .Fl f
86 option to derive the results from stored
87 .Pa utx.log
88 files.
89 When this argument is provided, all other options except for
90 .Fl f
91 and
92 .Fl n
93 are ignored.
94 The argument should be in the form
95 .Sm off
96 .Op Oo Ar CC Oc Ar YY
97 .Op Ar MM DD
98 .Ar hh mm
99 .Op Ar .SS
100 .Sm on
101 where each pair of letters represents the following:
102 .Pp
103 .Bl -tag -width Ds -compact -offset indent
104 .It Ar CC
105 The first two digits of the year (the century).
106 .It Ar YY
107 The second two digits of the year.
108 If
109 .Ar YY
110 is specified, but
111 .Ar CC
112 is not, a value for
113 .Ar YY
114 between 69 and 99 results in a
115 .Ar CC
116 value of 19.
117 Otherwise, a
118 .Ar CC
119 value of 20 is used.
120 .It Ar MM
121 Month of the year, from 1 to 12.
122 .It Ar DD
123 Day of the month, from 1 to 31.
124 .It Ar hh
125 Hour of the day, from 0 to 23.
126 .It Ar mm
127 Minute of the hour, from 0 to 59.
128 .It Ar SS
129 Second of the minute, from 0 to 60.
130 .El
131 .Pp
132 If the
133 .Ar CC
134 and
135 .Ar YY
136 letter pairs are not specified, the values default to the current
137 year.
138 If the
139 .Ar SS
140 letter pair is not specified, the value defaults to 0.
141 .It Fl f Ar file
142 Read the file
143 .Ar file
144 instead of the default,
145 .Pa /var/log/utx.log .
146 .It Fl h Ar host
147 .Ar Host
148 names may be names or internet numbers.
149 .It Fl n Ar maxrec
150 Limit the report to
151 .Ar maxrec
152 lines.
153 .It Fl s
154 Report the duration of the login session in seconds, instead of the
155 default days, hours and minutes.
156 .It Fl t Ar tty
157 Specify the
158 .Ar tty .
159 Tty names may be given fully or abbreviated, for example,
160 .Dq Li "last -t 03"
161 is
162 equivalent to
163 .Dq Li "last -t tty03" .
164 .It Fl w
165 Widen the duration field to show seconds, as well as the
166 default days, hours and minutes.
167 .It Fl y
168 Report the year in the session start time.
169 .El
170 .Pp
171 If multiple arguments are given,
172 and a snapshot time is not specified,
173 the information which applies to any of the
174 arguments is printed, e.g.,
175 .Dq Li "last root -t console"
176 would list all of
177 .Dq Li root Ns 's
178 sessions as well as all sessions on the console terminal.
179 If no
180 users, hostnames or terminals are specified,
181 .Nm
182 prints a record of
183 all logins and logouts.
184 .Pp
185 The pseudo-user
186 .Ar reboot
187 logs in at reboots of the system, thus
188 .Dq Li last reboot
189 will give an indication of mean time between reboot.
190 .Pp
191 If
192 .Nm
193 is interrupted, it indicates to what date the search has
194 progressed.
195 If interrupted with a quit signal
196 .Nm
197 indicates how
198 far the search has progressed and then continues.
199 .Sh FILES
200 .Bl -tag -width /var/log/utx.log -compact
201 .It Pa /var/log/utx.log
202 login data base
203 .El
204 .Sh EXAMPLES
205 Show logins in pts/14 with the duration in seconds and limit the report to
206 two lines:
207 .Bd -literal -offset indent
208 $ last -n2 -s -t pts/14
209 bob    pts/1   Wed Dec  9 11:08   still logged in
210 bob    pts/2   Mon Dec  7 20:10 - 20:23  (     776)
211 .Ed
212 .Pp
213 Show active logins at
214 .Ql December 7th 20:23
215 of the current year:
216 .Bd -literal -offset indent
217 $ last -d 12072023
218 bob    pts/1    Mon Dec  7 20:10 - 20:23  (00:12)
219 bob    pts/6    Mon Dec  7 19:24 - 22:27  (03:03)
220 alice  ttyv0    Mon Dec  7 19:18 - 22:27  (03:09)
221 .Ed
222 .Sh SEE ALSO
223 .Xr lastcomm 1 ,
224 .Xr getutxent 3 ,
225 .Xr libxo 3 ,
226 .Xr xo_parse_args 3 ,
227 .Xr ac 8 ,
228 .Xr lastlogin 8
229 .Sh HISTORY
230 .Nm
231 utility first appeared in
232 .Bx 1 .
233 .Sh AUTHORS
234 .An -nosplit
235 The original version was written by
236 .An Howard P. Katseff ;
237 .An Keith Bostic
238 rewrote it in 1986/87 to add functionality and to improve code quality.
239 .An Philip Paeps
240 added
241 .Xr libxo 3
242 support in August 2018.
243 .Sh BUGS
244 If a login shell should terminate abnormally for some reason, it is likely
245 that a logout record will not be written to the
246 .Pa utx.log
247 file.
248 In this case,
249 .Nm
250 will indicate the logout time as "shutdown".