29629b345a91d738f6c44443bc049fcf9f1f29c9
[platform/upstream/bash.git] / support / printenv.c
1 /* 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
27 extern char **environ;
28
29 int
30 main (argc, argv) 
31      int argc;
32      char **argv;
33 {
34   register char **envp, *eval;
35   int len;
36
37   argv++;
38   argc--;
39
40   /* printenv */
41   if (argc == 0)
42     {
43       for (envp = environ; *envp; envp++)
44         puts (*envp);
45       exit (0);
46     }
47
48   /* printenv varname */
49   len = strlen (*argv);
50   for (envp = environ; *envp; envp++)
51     {
52       if (**argv == **envp && strncmp (*envp, *argv, len) == 0)
53         {
54           eval = *envp + len;
55           /* If the environment variable doesn't have an `=', ignore it. */
56           if (*eval == '=')
57             {
58               puts (eval + 1);
59               exit (0);
60             }
61         }
62     }
63   exit (1);
64 }
65