2 Copyright (C) 1992-2005, 2007-2008 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Written by jla; revised by djm */
23 #include <sys/types.h>
27 #include "long-options.h"
31 /* The official name of this program (e.g., no `g' prefix). */
32 #define PROGRAM_NAME "users"
35 proper_name ("Joseph Arceneaux"), \
36 proper_name ("David MacKenzie")
39 userid_compare (const void *v_a, const void *v_b)
41 char **a = (char **) v_a;
42 char **b = (char **) v_b;
43 return strcmp (*a, *b);
47 list_entries_users (size_t n, const STRUCT_UTMP *this)
49 char **u = xnmalloc (n, sizeof *u);
55 if (IS_USER_PROCESS (this))
59 trimmed_name = extract_trimmed_name (this);
61 u[n_entries] = trimmed_name;
67 qsort (u, n_entries, sizeof (u[0]), userid_compare);
69 for (i = 0; i < n_entries; i++)
71 char c = (i < n_entries - 1 ? ' ' : '\n');
76 for (i = 0; i < n_entries; i++)
81 /* Display a list of users on the system, according to utmp file FILENAME.
82 Use read_utmp OPTIONS to read FILENAME. */
85 users (const char *filename, int options)
88 STRUCT_UTMP *utmp_buf;
90 if (read_utmp (filename, &n_users, &utmp_buf, options) != 0)
91 error (EXIT_FAILURE, errno, "%s", filename);
93 list_entries_users (n_users, utmp_buf);
101 if (status != EXIT_SUCCESS)
102 fprintf (stderr, _("Try `%s --help' for more information.\n"),
106 printf (_("Usage: %s [OPTION]... [FILE]\n"), program_name);
108 Output who is currently logged in according to FILE.\n\
109 If FILE is not specified, use %s. %s as FILE is common.\n\
112 UTMP_FILE, WTMP_FILE);
113 fputs (HELP_OPTION_DESCRIPTION, stdout);
114 fputs (VERSION_OPTION_DESCRIPTION, stdout);
115 emit_bug_reporting_address ();
121 main (int argc, char **argv)
123 initialize_main (&argc, &argv);
124 set_program_name (argv[0]);
125 setlocale (LC_ALL, "");
126 bindtextdomain (PACKAGE, LOCALEDIR);
127 textdomain (PACKAGE);
129 atexit (close_stdout);
131 parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE_NAME, Version,
132 usage, AUTHORS, (char const *) NULL);
133 if (getopt_long (argc, argv, "", NULL, NULL) != -1)
134 usage (EXIT_FAILURE);
136 switch (argc - optind)
139 users (UTMP_FILE, READ_UTMP_CHECK_PIDS);
142 case 1: /* users <utmp file> */
143 users (argv[optind], 0);
147 error (0, 0, _("extra operand %s"), quote (argv[optind + 1]));
148 usage (EXIT_FAILURE);