*** empty log message ***
[coreutils.git] / src / whoami.c
blobe5fd7183f4b871a50832ff5253a5d592c89ae321
1 /* whoami -- print effective userid
2 Copyright (C) 89,90, 1991-1997, 1999 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)
7 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, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Equivalent to `id -un'. */
19 /* Written by Richard Mlynarik. */
21 #include <config.h>
22 #include <stdio.h>
23 #include <sys/types.h>
24 #include <pwd.h>
25 #include <getopt.h>
27 #include "system.h"
28 #include "long-options.h"
30 /* The official name of this program (e.g., no `g' prefix). */
31 #define PROGRAM_NAME "whoami"
33 #define AUTHORS "Richard Mlynarik"
35 /* The name this program was run with. */
36 char *program_name;
38 static struct option const long_options[] =
40 {0, 0, 0, 0}
43 void
44 usage (int status)
46 if (status != 0)
47 fprintf (stderr, _("Try `%s --help' for more information.\n"),
48 program_name);
49 else
51 printf (_("Usage: %s [OPTION]...\n"), program_name);
52 printf (_("\
53 Print the user name associated with the current effective user id.\n\
54 Same as id -un.\n\
55 \n\
56 --help display this help and exit\n\
57 --version output version information and exit\n"));
58 puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
60 exit (status);
63 int
64 main (int argc, char **argv)
66 register struct passwd *pw;
67 register uid_t uid;
68 int c;
70 program_name = argv[0];
71 setlocale (LC_ALL, "");
72 bindtextdomain (PACKAGE, LOCALEDIR);
73 textdomain (PACKAGE);
75 parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
76 AUTHORS, usage);
78 while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
80 switch (c)
82 case 0:
83 break;
85 default:
86 usage (1);
90 if (optind != argc)
91 usage (1);
93 uid = geteuid ();
94 pw = getpwuid (uid);
95 if (pw)
97 puts (pw->pw_name);
98 exit (0);
100 fprintf (stderr, _("%s: cannot find username for UID %u\n"),
101 program_name, (unsigned) uid);
102 exit (1);