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>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2005-04-22 04:53:13 +05:30
|
|
|
*/
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define printenv_trivial_usage
|
|
|
|
//usage: "[VARIABLE]..."
|
|
|
|
//usage:#define printenv_full_usage "\n\n"
|
|
|
|
//usage: "Print environment VARIABLEs.\n"
|
|
|
|
//usage: "If no VARIABLE specified, print all."
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-04-22 04:53:13 +05:30
|
|
|
|
2010-10-01 03:01:12 +05:30
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int printenv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int printenv_main(int argc UNUSED_PARAM, char **argv)
|
2005-04-22 04:53:13 +05:30
|
|
|
{
|
2008-11-12 04:29:41 +05:30
|
|
|
int exit_code = EXIT_SUCCESS;
|
|
|
|
|
2005-04-22 04:53:13 +05:30
|
|
|
/* no variables specified, show whole env */
|
2008-03-17 14:39:09 +05:30
|
|
|
if (!argv[1]) {
|
2011-03-08 17:14:02 +05:30
|
|
|
char **e = environ;
|
|
|
|
|
|
|
|
/* environ can be NULL! (for example, after clearenv())
|
|
|
|
* Check for that:
|
|
|
|
*/
|
|
|
|
if (e)
|
|
|
|
while (*e)
|
|
|
|
puts(*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);
|
2008-11-12 04:29:41 +05:30
|
|
|
else
|
|
|
|
exit_code = EXIT_FAILURE;
|
2007-08-06 08:25:41 +05:30
|
|
|
}
|
2005-04-22 04:53:13 +05:30
|
|
|
}
|
|
|
|
|
2008-11-12 04:29:41 +05:30
|
|
|
fflush_stdout_and_exit(exit_code);
|
2005-04-22 04:53:13 +05:30
|
|
|
}
|