aboutsummaryrefslogtreecommitdiff
path: root/toys/env.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
committerRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
commit3a9241add947cb6d24b5de7a8927517426a78795 (patch)
treed122ab6570439cd6b17c7d73ed8d4e085e0b8a95 /toys/env.c
parent689f095bc976417bf50810fe59a3b3ac32b21105 (diff)
downloadtoybox-3a9241add947cb6d24b5de7a8927517426a78795.tar.gz
Move commands into "posix", "lsb", and "other" menus/directories.
Diffstat (limited to 'toys/env.c')
-rw-r--r--toys/env.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/toys/env.c b/toys/env.c
deleted file mode 100644
index 7cda85f9..00000000
--- a/toys/env.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/* vi: set sw=4 ts=4:
- *
- * env.c - Set the environment for command invocation.
- *
- * Copyright 2012 Tryn Mirell <tryn@mirell.org>
- * env.c
-
-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 & 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 xexec(command);
-}