Files
rtems/cpukit/libmisc/shell/main_getenv.c
Chris Johns 05404983e2 2009-11-18 Chris Johns <chrisj@rtems.org>
* libmisc/shell/main_getenv.c, libmisc/shell/main_setenv.c,
        libmisc/shell/main_unsetenv.c: New. The shell can now play with
        environment variables.
        * libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add setenv,
        getenv, and unsetenv to the shell.
2009-11-18 00:09:21 +00:00

50 lines
908 B
C

/*
* 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"
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 */
};