view toys/other/printenv.c @ 1539:3e85af1f7e22 draft

First batch of sed tests. Only good for TEST_HOST=1 at the moment because the test infrastructure itself depends on sed, so if an unfinished sed is in the $PATH it goes boing. But hey, corner cases! I have... more.
author Rob Landley <rob@landley.net>
date Wed, 29 Oct 2014 18:44:33 -0500
parents 786841fdb1e0
children
line wrap: on
line source

/* printenv.c - Print environment variables.
 *
 * Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>

USE_PRINTENV(NEWTOY(printenv, "0(null)", TOYFLAG_USR|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"

extern char **environ;

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));
}