blob: c86308d3b6699f07bc34fa46e2ae986704e451e7 [file] [log] [blame]
Denis Vlasenko1c660b42007-03-05 00:27:50 +00001/* printenv -- minimal clone of BSD printenv(1).
2
3 usage: printenv [varname]
4
5 Chet Ramey
6 chet@po.cwru.edu
7*/
8
9/* Copyright (C) 1997-2002 Free Software Foundation, Inc.
10
11 This file is part of GNU Bash, the Bourne Again SHell.
12
13 Bash is free software; you can redistribute it and/or modify it under
14 the terms of the GNU General Public License as published by the Free
15 Software Foundation; either version 2, or (at your option) any later
16 version.
17
18 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
19 WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License along
24 with Bash; see the file COPYING. If not, write to the Free Software
25 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
26
Mike Frysinger787972f2016-03-22 18:15:14 -040027#include <stdio.h>
Denis Vlasenko1c660b42007-03-05 00:27:50 +000028#include <stdlib.h>
29#include <string.h>
30
31extern char **environ;
32
33int
Denis Vlasenko8e858e22007-03-07 09:35:43 +000034main (argc, argv)
Denis Vlasenko1c660b42007-03-05 00:27:50 +000035 int argc;
36 char **argv;
37{
38 register char **envp, *eval;
39 int len;
40
41 argv++;
42 argc--;
43
44 /* printenv */
45 if (argc == 0)
46 {
47 for (envp = environ; *envp; envp++)
48 puts (*envp);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000049 exit(EXIT_SUCCESS);
Denis Vlasenko1c660b42007-03-05 00:27:50 +000050 }
51
52 /* printenv varname */
53 len = strlen (*argv);
54 for (envp = environ; *envp; envp++)
55 {
56 if (**argv == **envp && strncmp (*envp, *argv, len) == 0)
57 {
58 eval = *envp + len;
Denys Vlasenko95f79532017-08-02 14:26:33 +020059 /* If the environment variable doesn't have an '=', ignore it. */
Denis Vlasenko1c660b42007-03-05 00:27:50 +000060 if (*eval == '=')
61 {
62 puts (eval + 1);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000063 exit(EXIT_SUCCESS);
Denis Vlasenko1c660b42007-03-05 00:27:50 +000064 }
65 }
66 }
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000067 exit(EXIT_FAILURE);
Denis Vlasenko1c660b42007-03-05 00:27:50 +000068}