blob: 06d68d0ef48693782b7f741942d4b87da19d62b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* vi: set sw=4 ts=4: */
/*
* printenv implementation for busybox
*
* Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
* Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "libbb.h"
int printenv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int printenv_main(int argc, char **argv)
{
/* no variables specified, show whole env */
if (argc == 1) {
int e = 0;
while (environ[e])
puts(environ[e++]);
} else {
/* search for specified variables and print them out if found */
char *arg, *env;
while ((arg = *++argv) != NULL) {
env = getenv(arg);
if (env)
puts(env);
}
}
fflush_stdout_and_exit(0);
}
|