aboutsummaryrefslogtreecommitdiff
path: root/toys/w.c
blob: 7e5a2964cff05d88287d800d7a33ea8ee5f7f606 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* vi: set sw=4 ts=4:
 *
 * w.c - shows logged in users
 *
 * Copyright 2012 Gaurang Shastri <gmshastri@gmail.com>
 *
 * Not in SUSv4.

USE_W(NEWTOY(w, NULL, TOYFLAG_USR|TOYFLAG_BIN))

config W
	bool "w"
	default y
	help
	  usage: w 

	  Show who is logged on and since how long they logged in.

*/

#include "toys.h"

void w_main(void)
{
    struct utmpx *x;
    time_t time_val;
    xprintf("USER     TTY             LOGIN@              FROM");
    setutxent();
    x=getutxent();
    while(x!=NULL) {
        if(x->ut_type==7) {
	    xprintf("\n");
            xprintf("%-9.8s",x->ut_user);
            xprintf("%-9.8s",x->ut_line);

	    xprintf(" ");
	    time_val = (x->ut_tv.tv_sec);
	    xprintf("%-4.24s",ctime(&time_val));
	    
            xprintf(" (");
            xprintf("%-1.12s",x->ut_host);
            xprintf(")");
        }
    x=getutxent();
    }
    xprintf("\n");
}