.
[coreutils.git] / src / env.c
blob24ad743de750e82fbc684b6a54bf35890a9c8023
1 /* env - run a program in a modified environment
2 Copyright (C) 86, 91, 92, 93, 94, 1995 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)
7 any later version.
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
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* Richard Mlynarik and David MacKenzie */
20 /* Options:
23 --ignore-environment
24 Construct a new environment from scratch; normally the
25 environment is inherited from the parent process, except as
26 modified by other options.
28 -u variable
29 --unset=variable
30 Unset variable VARIABLE (remove it from the environment).
31 If VARIABLE was not set, does nothing.
33 variable=value (an arg containing a "=" character)
34 Set the environment variable VARIABLE to value VALUE. VALUE
35 may be of zero length ("variable="). Setting a variable to a
36 zero-length value is different from unsetting it.
39 Indicate that the following argument is the program
40 to invoke. This is necessary when the program's name
41 begins with "-" or contains a "=".
43 The first remaining argument specifies a program to invoke;
44 it is searched for according to the specification of the PATH
45 environment variable. Any arguments following that are
46 passed as arguments to that program.
48 If no command name is specified following the environment
49 specifications, the resulting environment is printed.
50 This is like specifying a command name of "printenv".
52 Examples:
54 If the environment passed to "env" is
55 { LOGNAME=rms EDITOR=emacs PATH=.:/gnubin:/hacks }
57 env - foo
58 runs "foo" in a null environment.
60 env foo
61 runs "foo" in the environment
62 { LOGNAME=rms EDITOR=emacs PATH=.:/gnubin:/hacks }
64 env DISPLAY=gnu:0 nemacs
65 runs "nemacs" in the envionment
66 { LOGNAME=rms EDITOR=emacs PATH=.:/gnubin:/hacks DISPLAY=gnu:0 }
68 env - LOGNAME=foo /hacks/hack bar baz
69 runs the "hack" program on arguments "bar" and "baz" in an
70 environment in which the only variable is "LOGNAME". Note that
71 the "-" option clears out the PATH variable, so one should be
72 careful to specify in which directory to find the program to
73 call.
75 env -u EDITOR LOGNAME=foo PATH=/energy -- e=mc2 bar baz
76 runs the program "/energy/e=mc2" with environment
77 { LOGNAME=foo PATH=/energy }
80 #include <config.h>
81 #include <stdio.h>
82 #include <getopt.h>
83 #include <sys/types.h>
84 #include <getopt.h>
86 #include "version.h"
87 #include "system.h"
88 #include "error.h"
90 int putenv ();
92 static void usage __P ((int status));
94 extern char **environ;
96 /* The name by which this program was run. */
97 char *program_name;
99 /* If nonzero, display usage information and exit. */
100 static int show_help;
102 /* If nonzero, print the version on standard output and exit. */
103 static int show_version;
105 static struct option const longopts[] =
107 {"help", no_argument, &show_help, 1},
108 {"ignore-environment", no_argument, NULL, 'i'},
109 {"unset", required_argument, NULL, 'u'},
110 {"version", no_argument, &show_version, 1},
111 {NULL, 0, NULL, 0}
114 void
115 main (register int argc, register char **argv, char **envp)
117 char *dummy_environ[1];
118 int optc;
119 int ignore_environment = 0;
121 program_name = argv[0];
122 setlocale (LC_ALL, "");
123 bindtextdomain (PACKAGE, LOCALEDIR);
124 textdomain (PACKAGE);
126 while ((optc = getopt_long (argc, argv, "+iu:", longopts, (int *) 0)) != EOF)
128 switch (optc)
130 case 0:
131 break;
132 case 'i':
133 ignore_environment = 1;
134 break;
135 case 'u':
136 break;
137 default:
138 usage (2);
142 if (show_version)
144 printf ("env - %s\n", version_string);
145 exit (0);
148 if (show_help)
149 usage (0);
151 if (optind != argc && !strcmp (argv[optind], "-"))
152 ignore_environment = 1;
154 environ = dummy_environ;
155 environ[0] = NULL;
157 if (!ignore_environment)
158 for (; *envp; envp++)
159 putenv (*envp);
161 optind = 0; /* Force GNU getopt to re-initialize. */
162 while ((optc = getopt_long (argc, argv, "+iu:", longopts, (int *) 0)) != EOF)
163 if (optc == 'u')
164 putenv (optarg); /* Requires GNU putenv. */
166 if (optind != argc && !strcmp (argv[optind], "-"))
167 ++optind;
169 while (optind < argc && strchr (argv[optind], '='))
170 putenv (argv[optind++]);
172 /* If no program is specified, print the environment and exit. */
173 if (optind == argc)
175 while (*environ)
176 puts (*environ++);
177 exit (0);
180 execvp (argv[optind], &argv[optind]);
181 error (errno == ENOENT ? 127 : 126, errno, "%s", argv[optind]);
184 static void
185 usage (int status)
187 if (status != 0)
188 fprintf (stderr, _("Try `%s --help' for more information.\n"),
189 program_name);
190 else
192 printf (_("\
193 Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n"),
194 program_name);
195 printf (_("\
196 Set each NAME to VALUE in the environment and run COMMAND.\n\
198 -u, --unset=NAME remove variable from the environment\n\
199 -i, --ignore-environment start with an empty environment\n\
200 --help display this help and exit\n\
201 --version output version information and exit\n\
203 A mere - implies -i. If no COMMAND, print the resulting environment.\n\
204 "));
206 exit (status);