source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/printenv.c@ 2836

Last change on this file since 2836 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 882 bytes
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
[821]2/*
3 * printenv implementation for busybox
4 *
5 * Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
6 * Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
7 *
[2725]8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]9 */
10
[1765]11#include "libbb.h"
[821]12
[2725]13/* This is a NOFORK applet. Be very careful! */
14
15int printenv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
16int printenv_main(int argc UNUSED_PARAM, char **argv)
[821]17{
[2725]18 int exit_code = EXIT_SUCCESS;
19
[821]20 /* no variables specified, show whole env */
[2725]21 if (!argv[1]) {
[1765]22 int e = 0;
[821]23 while (environ[e])
24 puts(environ[e++]);
[1765]25 } else {
26 /* search for specified variables and print them out if found */
[821]27 char *arg, *env;
28
[1765]29 while ((arg = *++argv) != NULL) {
30 env = getenv(arg);
31 if (env)
32 puts(env);
[2725]33 else
34 exit_code = EXIT_FAILURE;
[1765]35 }
[821]36 }
37
[2725]38 fflush_stdout_and_exit(exit_code);
[821]39}
Note: See TracBrowser for help on using the repository browser.