1 /* printenv -- print all or part of environment
2 Copyright (C) 1989-1997, 1999-2004 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Usage: printenv [variable...]
20 If no arguments are given, print the entire environment.
21 If one or more variable names are given, print the value of
22 each one that is set, and nothing for ones that are not set.
25 0 if all variables specified were found
27 2 if some other error occurred
29 David MacKenzie and Richard Mlynarik */
33 #include <sys/types.h>
38 #include "long-options.h"
40 /* Exit status for syntax errors, etc. */
41 enum { PRINTENV_FAILURE = 2 };
43 /* The official name of this program (e.g., no `g' prefix). */
44 #define PROGRAM_NAME "printenv"
46 #define AUTHORS "David MacKenzie", "Richard Mlynarik"
48 /* The name this program was run with. */
51 extern char **environ;
56 if (status != EXIT_SUCCESS)
57 fprintf (stderr, _("Try `%s --help' for more information.\n"),
62 Usage: %s [VARIABLE]...\n\
64 If no environment VARIABLE specified, print them all.\n\
67 program_name, program_name);
68 fputs (HELP_OPTION_DESCRIPTION, stdout);
69 fputs (VERSION_OPTION_DESCRIPTION, stdout);
70 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
76 main (int argc, char **argv)
83 initialize_main (&argc, &argv);
84 program_name = argv[0];
85 setlocale (LC_ALL, "");
86 bindtextdomain (PACKAGE, LOCALEDIR);
89 initialize_exit_failure (PRINTENV_FAILURE);
90 atexit (close_stdout);
92 parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
93 usage, AUTHORS, (char const *) NULL);
94 if (getopt_long (argc, argv, "+", NULL, NULL) != -1)
95 usage (PRINTENV_FAILURE);
99 for (env = environ; *env != NULL; ++env)
107 for (i = optind; i < argc; ++i)
109 bool matched = false;
111 for (env = environ; *env; ++env)
115 while (*ep != '\0' && *ap != '\0' && *ep++ == *ap++)
117 if (*ep == '=' && *ap == '\0')
129 ok = (matches == argc - optind);
132 exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);