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"
|
2005-04-21 23:23:13 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int printenv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int printenv_main(int argc UNUSED_PARAM, char **argv)
|
2005-04-21 23:23:13 +00:00
|
|
|
{
|
|
|
|
/* no variables specified, show whole env */
|
2008-03-17 09:09:09 +00:00
|
|
|
if (!argv[1]) {
|
2007-08-06 02:55:41 +00:00
|
|
|
int e = 0;
|
2005-04-21 23:23:13 +00:00
|
|
|
while (environ[e])
|
|
|
|
puts(environ[e++]);
|
2007-08-06 02:55:41 +00:00
|
|
|
} else {
|
|
|
|
/* search for specified variables and print them out if found */
|
2005-04-21 23:23:13 +00:00
|
|
|
char *arg, *env;
|
|
|
|
|
2007-08-06 02:55:41 +00:00
|
|
|
while ((arg = *++argv) != NULL) {
|
|
|
|
env = getenv(arg);
|
|
|
|
if (env)
|
|
|
|
puts(env);
|
|
|
|
}
|
2005-04-21 23:23:13 +00:00
|
|
|
}
|
|
|
|
|
2008-05-19 09:29:47 +00:00
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS);
|
2005-04-21 23:23:13 +00:00
|
|
|
}
|