1 /* whoami -- print effective userid
2 Copyright (C) 89, 90, 91, 92, 93, 1994 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 2, or (at your option)
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, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* Equivalent to `id -un'. */
19 /* Written by Richard Mlynarik. */
26 #include <sys/types.h>
33 /* The name this program was run with. */
36 /* If non-zero, display usage information and exit. */
39 /* If non-zero, print the version on standard output and exit. */
40 static int show_version;
42 static struct option const long_options[] =
44 {"help", no_argument, &show_help, 1},
45 {"version", no_argument, &show_version, 1},
54 fprintf (stderr, "Try `%s --help' for more information.\n",
58 printf ("Usage: %s [OPTION]...\n", program_name);
61 --help display this help and exit\n\
62 --version output version information and exit\n\
75 register struct passwd *pw;
79 program_name = argv[0];
81 while ((c = getopt_long (argc, argv, "", long_options, (int *) 0)) != EOF)
95 printf ("whoami - %s\n", version_string);
113 fprintf (stderr, "%s: cannot find username for UID %u\n",
114 program_name, (unsigned) uid);