sbase/printenv.c

38 lines
499 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2013-06-09 09:20:55 -04:00
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
2013-06-09 09:20:55 -04:00
extern char **environ;
static void
usage(void)
{
eprintf("usage: %s [variable...]\n", argv0);
}
2013-06-09 09:20:55 -04:00
int
main(int argc, char **argv)
{
char *var;
ARGBEGIN {
default:
usage();
} ARGEND;
2013-06-09 09:20:55 -04:00
if(argc == 1) {
while(*environ)
printf("%s\n", *environ++);
return EXIT_SUCCESS;
2013-06-09 09:20:55 -04:00
}
while(*++argv) {
if((var = getenv(*argv)))
printf("%s\n", var);
}
return EXIT_SUCCESS;
2013-06-09 09:20:55 -04:00
}