aboutsummaryrefslogtreecommitdiff
path: root/toys/other/printenv.c
blob: 41cd0bd88563a2d2fc2771a36de21dc6832470f8 (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
/* printenv.c - Print environment variables.
 *
 * Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>

USE_PRINTENV(NEWTOY(printenv, "(null)0", TOYFLAG_BIN))

config PRINTENV
  bool "printenv"
  default y
  help
    usage: printenv [-0] [env_var...]

    Print environment variables.

    -0	Use \0 as delimiter instead of \n
*/

#include "toys.h"

void printenv_main(void)
{
  char **env, **var = toys.optargs;
  char delim = '\n';

  if (toys.optflags) delim = 0;

  do {
    int catch = 0, len = *var ? strlen(*var) : 0;

    for (env = environ; *env; env++) {
      char *out = *env;
      if (*var) {
        if (!strncmp(out, *var, len) && out[len] == '=') out += len +1;
        else continue;
      }
      xprintf("%s%c", out, delim);
      catch++;
    }
    if (*var && !catch) toys.exitval = 1;
  } while (*var && *(++var));
}