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 static struct option
const long_options
[] =
56 extern char **environ
;
61 if (status
!= EXIT_SUCCESS
)
62 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
67 Usage: %s [VARIABLE]...\n\
69 If no environment VARIABLE specified, print them all.\n\
72 program_name
, program_name
);
73 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
74 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
75 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
81 main (int argc
, char **argv
)
90 initialize_main (&argc
, &argv
);
91 program_name
= argv
[0];
92 setlocale (LC_ALL
, "");
93 bindtextdomain (PACKAGE
, LOCALEDIR
);
96 initialize_exit_failure (PRINTENV_FAILURE
);
97 atexit (close_stdout
);
99 parse_long_options (argc
, argv
, PROGRAM_NAME
, GNU_PACKAGE
, VERSION
,
100 usage
, AUTHORS
, (char const *) NULL
);
102 while ((c
= getopt_long (argc
, argv
, "", long_options
, NULL
)) != -1)
110 usage (PRINTENV_FAILURE
);
116 for (env
= environ
; *env
!= NULL
; ++env
)
118 exit_status
= EXIT_SUCCESS
;
122 for (i
= optind
; i
< argc
; ++i
)
124 for (env
= environ
; *env
; ++env
)
128 while (*ep
!= '\0' && *ap
!= '\0' && *ep
++ == *ap
++)
130 if (*ep
== '=' && *ap
== '\0')
139 exit_status
= (matches
!= argc
- optind
);