summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/main_getenv.c
blob: 034253fdc5480bfa8a4a987d7e6b15614e4d0181 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Get an environment vairable.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>

#include <rtems.h>
#include <rtems/shell.h>
#include "internal.h"

static int rtems_shell_main_getenv(int argc, char *argv[])
{
  char* string;

  if (argc != 2)
  {
    printf ("error: only argument is the variable name\n");
    return 1;
  }

  string = getenv (argv[1]);

  if (!string)
  {
    printf ("error: %s not found\n", argv[1]);
    return 1;
  }

  printf ("%s\n", string);

  return 0;
}

rtems_shell_cmd_t rtems_shell_GETENV_Command = {
  "getenv",                      /* name */
  "getenv [var]",                /* usage */
  "misc",                        /* topic */
  rtems_shell_main_getenv,       /* command */
  NULL,                          /* alias */
  NULL                           /* next */
};