(main): Use getopt_long rather than getopt.
[platform/upstream/coreutils.git] / src / printenv.c
1 /* printenv -- print all or part of environment
2    Copyright (C) 1989-1997, 1999-2004 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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.  */
17
18 /* Usage: printenv [variable...]
19
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.
23
24    Exit status:
25    0 if all variables specified were found
26    1 if not
27    2 if some other error occurred
28
29    David MacKenzie and Richard Mlynarik */
30
31 #include <config.h>
32 #include <stdio.h>
33 #include <sys/types.h>
34 #include <getopt.h>
35
36 #include "system.h"
37 #include "error.h"
38 #include "long-options.h"
39
40 /* Exit status for syntax errors, etc.  */
41 enum { PRINTENV_FAILURE = 2 };
42
43 /* The official name of this program (e.g., no `g' prefix).  */
44 #define PROGRAM_NAME "printenv"
45
46 #define AUTHORS "David MacKenzie", "Richard Mlynarik"
47
48 /* The name this program was run with. */
49 char *program_name;
50
51 extern char **environ;
52
53 void
54 usage (int status)
55 {
56   if (status != EXIT_SUCCESS)
57     fprintf (stderr, _("Try `%s --help' for more information.\n"),
58              program_name);
59   else
60     {
61       printf (_("\
62 Usage: %s [VARIABLE]...\n\
63   or:  %s OPTION\n\
64 If no environment VARIABLE specified, print them all.\n\
65 \n\
66 "),
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);
71     }
72   exit (status);
73 }
74
75 int
76 main (int argc, char **argv)
77 {
78   char **env;
79   char *ep, *ap;
80   int i;
81   bool ok;
82
83   initialize_main (&argc, &argv);
84   program_name = argv[0];
85   setlocale (LC_ALL, "");
86   bindtextdomain (PACKAGE, LOCALEDIR);
87   textdomain (PACKAGE);
88
89   initialize_exit_failure (PRINTENV_FAILURE);
90   atexit (close_stdout);
91
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);
96
97   if (optind >= argc)
98     {
99       for (env = environ; *env != NULL; ++env)
100         puts (*env);
101       ok = true;
102     }
103   else
104     {
105       int matches = 0;
106
107       for (i = optind; i < argc; ++i)
108         {
109           bool matched = false;
110
111           for (env = environ; *env; ++env)
112             {
113               ep = *env;
114               ap = argv[i];
115               while (*ep != '\0' && *ap != '\0' && *ep++ == *ap++)
116                 {
117                   if (*ep == '=' && *ap == '\0')
118                     {
119                       puts (ep + 1);
120                       matched = true;
121                       break;
122                     }
123                 }
124             }
125
126           matches += matched;
127         }
128
129       ok = (matches == argc - optind);
130     }
131
132   exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);
133 }