aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/env.c
blob: 87c25a019c06c0a8bf89a54f27217a369db1408b (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
/* env.c - Set the environment for command invocation.
 *
 * Copyright 2012 Tryn Mirell <tryn@mirell.org>
 *
 * http://opengroup.org/onlinepubs/9699919799/utilities/env.html

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

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

    Set the environment for command invocation.

    -i	Clear existing environment.
*/

#include "toys.h"

extern char **environ;

void env_main(void)
{
  char **ev;

  if (toys.optflags) clearenv();

  for (ev = toys.optargs; *ev; ev++) {
    char *name = *ev, *val = strchr(name, '=');

    if (val) {
      *(val++) = 0;
      if (*val) setenv(name, val, 1);
      else unsetenv(name);
    } else xexec(ev);
  }

  if (environ) for (ev = environ; *ev; ev++) xputs(*ev);
}