view toys/posix/env.c @ 689:c29e69a0e85e

On 32 bit platforms %ld doesn't match uint64_t, so do long long and %lld (rather than deal with verbose PRIu64 nonsense).
author Rob Landley <rob@landley.net>
date Sat, 10 Nov 2012 18:24:14 -0600
parents 7e846e281e38
children 786841fdb1e0
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * 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;
    char **command = NULL;
    char *del = "=";
    
    if (toys.optflags) 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 xexec(command);
}