]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/who/who.1
zfs: merge openzfs/zfs@2e2a46e0a
[FreeBSD/FreeBSD.git] / usr.bin / who / who.1
1 .\" Copyright (c) 1986, 1991, 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 .\"     @(#)who.1       8.2 (Berkeley) 12/30/93
29 .\"
30 .Dd August 30, 2020
31 .Dt WHO 1
32 .Os
33 .Sh NAME
34 .Nm who
35 .Nd display who is on the system
36 .Sh SYNOPSIS
37 .Nm
38 .Op Fl abHmqsTu
39 .Op Cm am I
40 .Op Ar file
41 .Sh DESCRIPTION
42 The
43 .Nm
44 utility displays information about currently logged in users.
45 By default, this includes the login name, tty name, date and time of login and
46 remote hostname if not local.
47 .Pp
48 The options are as follows:
49 .Bl -tag -width indent
50 .It Fl a
51 Equivalent to
52 .Fl bTu ,
53 with the exception that output is not restricted to the time and date of
54 the last system reboot.
55 .It Fl b
56 Write the time and date of the last system reboot.
57 .It Fl H
58 Write column headings above the output.
59 .It Fl m
60 Show information about the terminal attached to standard input only.
61 .It Fl q
62 .Dq "Quick mode" :
63 List the names and number of logged in users in columns.
64 All other command line options are ignored.
65 .It Fl s
66 Show the name, line and time fields only.
67 This is the default.
68 .It Fl T
69 Indicate whether each user is accepting messages.
70 One of the following characters is written:
71 .Pp
72 .Bl -tag -width 1n -compact
73 .It Li +
74 User is accepting messages.
75 .It Li \&-
76 User is not accepting messages.
77 .It Li \&?
78 An error occurred.
79 .El
80 .It Fl u
81 Show idle time for each user in hours and minutes as
82 .Ar hh : Ns Ar mm ,
83 .Ql \&.
84 if the user has been idle less than a minute, and
85 .Dq Li old
86 if the user has been idle more than 24 hours.
87 .It Cm am I
88 Equivalent to
89 .Fl m .
90 .El
91 .Pp
92 By default,
93 .Nm
94 gathers information from the file
95 .Pa /var/run/utx.active .
96 An alternate
97 .Ar file
98 may be specified which is usually
99 .Pa /var/log/utx.log
100 (or
101 .Pa /var/log/utx.log.[0-6]
102 depending on site policy as
103 .Pa utx.log
104 can grow quite large and daily versions may or may not
105 be kept around after compression by
106 .Xr ac 8 ) .
107 The
108 .Pa utx.log
109 file contains a record of every login, logout,
110 crash, shutdown and date change
111 since
112 .Pa utx.log
113 was last truncated or
114 created.
115 .Pp
116 If
117 .Pa /var/log/utx.log
118 is being used as the file, the user name may be empty
119 or one of the special characters '|', '}' and '~'.
120 Logouts produce
121 an output line without any user name.
122 For more information on the
123 special characters, see
124 .Xr getutxent 3 .
125 .Sh ENVIRONMENT
126 The
127 .Ev COLUMNS , LANG , LC_ALL
128 and
129 .Ev LC_TIME
130 environment variables affect the execution of
131 .Nm
132 as described in
133 .Xr environ 7 .
134 .Sh FILES
135 .Bl -tag -width /var/log/utx.log.[0-6] -compact
136 .It Pa /var/run/utx.active
137 .It Pa /var/log/utx.log
138 .It Pa /var/log/utx.log.[0-6]
139 .El
140 .Sh EXIT STATUS
141 .Ex -std
142 .Sh EXAMPLES
143 Show a brief summary of who is logged in:
144 .Bd -literal -offset indent
145 $ who -q
146 fernape          root             root
147 # users = 3
148 .Ed
149 .Pp
150 Show who is logged in along with the line and time fields (without the headers):
151 .Bd -literal -offset indent
152 $ who -s
153 fernape          ttyv0        Aug 26 16:23
154 root             ttyv1        Aug 26 16:23
155 root             ttyv2        Aug 26 16:23
156 .Ed
157 .Pp
158 Show information about the terminal attached to standard input:
159 .Bd -literal -offset indent
160 $ who am i
161 fernape                       Aug 26 16:24
162 .Ed
163 .Pp
164 Show time and date of the last system reboot, whether the users accept messages
165 and the idle time for each of them:
166 .Bd -literal -offset indent
167 $ who -a
168                  - system boot  Aug 26 16:23   .
169 fernape          - ttyv0        Aug 26 16:23   .
170 root             - ttyv1        Aug 26 16:23   .
171 root             - ttyv2        Aug 26 16:23   .
172 .Ed
173 .Pp
174 Same as above but showing headers:
175 .Bd -literal -offset indent
176 $ who -aH
177 NAME             S LINE         TIME         IDLE  FROM
178                  - system boot  Aug 26 16:23   .
179 fernape          - ttyv0        Aug 26 16:23   .
180 root             - ttyv1        Aug 26 16:23 00:01
181 root             - ttyv2        Aug 26 16:23 00:01
182 .Ed
183 .Sh SEE ALSO
184 .Xr last 1 ,
185 .Xr users 1 ,
186 .Xr w 1 ,
187 .Xr getutxent 3
188 .Sh STANDARDS
189 The
190 .Nm
191 utility conforms to
192 .St -p1003.1-2001 .
193 .Sh HISTORY
194 A
195 .Nm
196 command appeared in
197 .At v1 .