summaryrefslogtreecommitdiff
path: root/package/toolbox/src/src/printenv.c
blob: 304258c4a59095cc654f61d8aee2dca0d0a45447 (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

extern char** environ;

int main (int argc, char **argv)
{
    char** e;
    char* v;
    int i;
   
    if (argc == 1) {
        e = environ;
        while (*e) {
	    write(1, *e, strlen(*e));
	    write(1, "\n", 1);
            e++;
        }
    } else {
        for (i=1; i<argc; i++) {
            v = getenv(argv[i]);
            if (v) {
		write(1, v, strlen(v));
		write(1, "\n", 1);
            }
        }
    }

    return 0;
}