sbase/printenv.c

39 lines
519 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
2014-04-18 06:51:18 -04:00
main(int argc, char *argv[])
2013-06-09 09:20:55 -04:00
{
char *var;
int ret = 0;
2013-06-09 09:20:55 -04:00
ARGBEGIN {
default:
usage();
} ARGEND;
2014-11-16 08:11:12 -05:00
if (argc == 0) {
while (*environ)
2013-06-09 09:20:55 -04:00
printf("%s\n", *environ++);
2014-11-16 08:11:12 -05:00
} else {
while (*argv) {
2014-11-16 08:16:51 -05:00
if ((var = getenv(*argv++)))
2014-11-16 08:11:12 -05:00
printf("%s\n", var);
else
ret = 1;
2014-11-16 08:11:12 -05:00
}
2013-06-09 09:20:55 -04:00
}
return ret;
2013-06-09 09:20:55 -04:00
}