2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-04-21 23:23:13 +00:00
|
|
|
/*
|
|
|
|
* printenv implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
* Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
|
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2005-04-21 23:23:13 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2007-05-17 23:02:14 +00:00
|
|
|
extern char **environ;
|
2005-04-21 23:23:13 +00:00
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int printenv_main(int argc, char **argv);
|
2005-04-21 23:23:13 +00:00
|
|
|
int printenv_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int e = 0;
|
|
|
|
|
|
|
|
/* no variables specified, show whole env */
|
|
|
|
if (argc == 1)
|
|
|
|
while (environ[e])
|
|
|
|
puts(environ[e++]);
|
|
|
|
|
|
|
|
/* search for specified variables and print them out if found */
|
|
|
|
else {
|
|
|
|
int i;
|
|
|
|
size_t l;
|
|
|
|
char *arg, *env;
|
|
|
|
|
|
|
|
for (i=1; (arg = argv[i]); ++i)
|
|
|
|
for (; (env = environ[e]); ++e) {
|
|
|
|
l = strlen(arg);
|
|
|
|
if (!strncmp(env, arg, l) && env[l] == '=')
|
|
|
|
puts(env + l + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
fflush_stdout_and_exit(0);
|
2005-04-21 23:23:13 +00:00
|
|
|
}
|