sbase/tee.c

50 lines
845 B
C
Raw Normal View History

2011-05-22 21:36:34 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
2011-05-23 20:13:34 -04:00
#include <unistd.h>
2011-05-22 21:36:34 -04:00
#include "util.h"
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-a] [file...]\n", argv0);
}
2011-05-22 21:36:34 -04:00
int
main(int argc, char *argv[])
{
int aflag = 0;
2013-06-14 14:20:47 -04:00
char buf[BUFSIZ];
int i, nfps;
2011-05-22 21:36:34 -04:00
size_t n;
FILE **fps = NULL;
2011-05-22 21:36:34 -04:00
2013-06-14 14:20:47 -04:00
ARGBEGIN {
case 'a':
aflag = 1;
2013-06-14 14:20:47 -04:00
break;
default:
usage();
} ARGEND;
nfps = argc + 1;
fps = ecalloc(nfps, sizeof *fps);
for (i = 0; argc > 0; argc--, argv++, i++)
if (!(fps[i] = fopen(*argv, aflag ? "a" : "w")))
eprintf("fopen %s:", *argv);
fps[i] = stdout;
2011-05-22 21:36:34 -04:00
while ((n = fread(buf, 1, sizeof buf, stdin)) > 0) {
for (i = 0; i < nfps; i++) {
if (fwrite(buf, 1, n, fps[i]) != n)
2011-05-22 21:36:34 -04:00
eprintf("%s: write error:", buf);
2013-06-14 14:20:47 -04:00
}
}
if (ferror(stdin))
2011-05-22 21:36:34 -04:00
eprintf("<stdin>: read error:");
2013-06-14 14:20:47 -04:00
2014-10-02 18:46:04 -04:00
return 0;
2011-05-22 21:36:34 -04:00
}