home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / sh-utils-1.12-src.tgz / tar.out / fsf / sh-utils / src / printenv.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  146 lines

  1. /* printenv -- print all or part of environment
  2.    Copyright (C) 89, 90, 91, 92, 93, 1994 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
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, 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.  
  28.    David MacKenzie and Richard Mlynarik */
  29.  
  30. #include <config.h>
  31. #include <stdio.h>
  32. #include <sys/types.h>
  33. #include <getopt.h>
  34.  
  35. #include "version.h"
  36. #include "system.h"
  37.  
  38. void error ();
  39.  
  40. /* The name this program was run with. */
  41. char *program_name;
  42.  
  43. /* If non-zero, display usage information and exit.  */
  44. static int show_help;
  45.  
  46. /* If non-zero, print the version on standard output and exit.  */
  47. static int show_version;
  48.  
  49. static struct option const long_options[] =
  50. {
  51.   {"help", no_argument, &show_help, 1},
  52.   {"version", no_argument, &show_version, 1},
  53.   {0, 0, 0, 0}
  54. };
  55.  
  56. extern char **environ;
  57.  
  58. static void
  59. usage (status)
  60.      int status;
  61. {
  62.   if (status != 0)
  63.     fprintf (stderr, "Try `%s --help' for more information.\n",
  64.          program_name);
  65.   else
  66.     {
  67.       printf ("Usage: %s [OPTION]... [VARIABLE]...\n", program_name);
  68.       printf ("\
  69. \n\
  70.   --help      display this help and exit\n\
  71.   --version   output version information and exit\n\
  72. \n\
  73. If no VARIABLE, print them all.\n\
  74. ");
  75.     }
  76.   exit (status);
  77. }
  78.  
  79. main (argc, argv)
  80.      int argc;
  81.      char **argv;
  82. {
  83.   char **env;
  84.   char *ep, *ap;
  85.   int i;
  86.   int matches = 0;
  87.   int c;
  88.   int exit_status;
  89.  
  90.   program_name = argv[0];
  91.  
  92.   while ((c = getopt_long (argc, argv, "", long_options, (int *) 0)) != EOF)
  93.     {
  94.       switch (c)
  95.     {
  96.     case 0:
  97.       break;
  98.  
  99.     default:
  100.       usage (1);
  101.     }
  102.     }
  103.  
  104.   if (show_version)
  105.     {
  106.       printf ("printenv - %s\n", version_string);
  107.       exit (0);
  108.     }
  109.  
  110.   if (show_help)
  111.     usage (0);
  112.  
  113.   if (optind == argc)
  114.     {
  115.       for (env = environ; *env != NULL; ++env)
  116.     puts (*env);
  117.       exit_status = 0;
  118.     }
  119.   else
  120.     {
  121.       for (i = optind; i < argc; ++i)
  122.     {
  123.       for (env = environ; *env; ++env)
  124.         {
  125.           ep = *env;
  126.           ap = argv[i];
  127.           while (*ep != '\0' && *ap != '\0' && *ep++ == *ap++)
  128.         {
  129.           if (*ep == '=' && *ap == '\0')
  130.             {
  131.               puts (ep + 1);
  132.               ++matches;
  133.               break;
  134.             }
  135.         }
  136.         }
  137.     }
  138.       exit_status = (matches != argc - optind);
  139.     }
  140.  
  141.   if (ferror (stdout) || fclose (stdout) == EOF)
  142.     error (2, errno, "standard output");
  143.  
  144.   exit (exit_status);
  145. }
  146.