sbase/printenv.c

39 lines
519 B
C
Raw Normal View History

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