blob: e6131498f53a2c2e0a0f1482c5a4ab877d7ffc8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* vi: set sw=4 ts=4:
*
* whoami.c - Print effective user name
*
* Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>
USE_WHOAMI(NEWTOY(whoami, NULL, TOYFLAG_USR|TOYFLAG_BIN))
config WHOAMI
bool "whoami"
default y
help
usage: whoami
Print effective user name.
*/
#include "toys.h"
void whoami_main(void)
{
struct passwd *pw = getpwuid(geteuid());
if (!pw) {
perror("getpwuid");
toys.exitval = 1;
return;
}
xputs(pw->pw_name);
}
|