2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-04-22 04:53:13 +05:30
|
|
|
/*
|
|
|
|
* 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 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2005-04-22 04:53:13 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2007-05-18 04:32:14 +05:30
|
|
|
extern char **environ;
|
2005-04-22 04:53:13 +05:30
|
|
|
|
2007-02-03 22:58:39 +05:30
|
|
|
int printenv_main(int argc, char **argv);
|
2005-04-22 04:53:13 +05:30
|
|
|
int printenv_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
/* no variables specified, show whole env */
|
2007-08-06 08:25:41 +05:30
|
|
|
if (argc == 1) {
|
|
|
|
int e = 0;
|
2005-04-22 04:53:13 +05:30
|
|
|
while (environ[e])
|
|
|
|
puts(environ[e++]);
|
2007-08-06 08:25:41 +05:30
|
|
|
} else {
|
|
|
|
/* search for specified variables and print them out if found */
|
2005-04-22 04:53:13 +05:30
|
|
|
char *arg, *env;
|
|
|
|
|
2007-08-06 08:25:41 +05:30
|
|
|
while ((arg = *++argv) != NULL) {
|
|
|
|
env = getenv(arg);
|
|
|
|
if (env)
|
|
|
|
puts(env);
|
|
|
|
}
|
2005-04-22 04:53:13 +05:30
|
|
|
}
|
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(0);
|
2005-04-22 04:53:13 +05:30
|
|
|
}
|