aboutsummaryrefslogtreecommitdiff
path: root/toys/env.c
blob: b23d98a0f318275c5bae4b21bc186382b5b85b85 (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:
 * env.c

USE_ENV(NEWTOY(env, "^i", TOYFLAG_USR|TOYFLAG_BIN))

config ENV
	bool "env"
	default y
	help
        usage: env [-i] [FOO=BAR...] [command [option...]]

        Set the environment for command invocation
*/

#include "toys.h"

extern char **environ;

void env_main(void)
{
    char **ev;
    char **command = NULL;
    char *del = "=";
    
    if (toys.optflags & 1) clearenv();
    
    for (ev = toys.optargs; *ev != NULL; ev++) {
        char *env, *val = NULL;
        
        env = strtok(*ev, del);
        
        if (env) val = strtok(NULL, del);
        
        if (val) setenv(env, val, 1);
        else {
            command = ev;
            break;
        }
    }
    
    if (!command) {
        char **ep;
        for (ep = environ; *ep; ep++)
            xputs(*ep);
        return;
    } else execvp(*command, command);
}