sbase/cat.c

45 lines
725 B
C
Raw Normal View History

2011-05-23 01:36:34 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2011-05-24 10:05:36 +00:00
#include <unistd.h>
2011-05-26 17:18:42 +00:00
#include "text.h"
2011-05-23 01:36:34 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-u] [file...]\n", argv0);
}
2011-05-23 01:36:34 +00:00
int
main(int argc, char *argv[])
{
FILE *fp;
int ret = 0;
2011-05-23 01:36:34 +00:00
2012-05-31 18:38:18 +00:00
ARGBEGIN {
case 'u':
setbuf(stdout, NULL);
break;
2012-05-31 18:38:18 +00:00
default:
usage();
2012-05-31 18:38:18 +00:00
} ARGEND;
if (argc == 0) {
2011-05-26 17:18:42 +00:00
concat(stdin, "<stdin>", stdout, "<stdout>");
2014-04-22 10:43:01 +00:00
} else {
for (; argc; argc--, argv++) {
if (argv[0][0] == '-' && !argv[0][1])
2014-11-13 15:24:43 +00:00
argv[0] = "/dev/fd/0";
if (!(fp = fopen(argv[0], "r"))) {
2014-11-13 15:24:43 +00:00
weprintf("fopen %s:", argv[0]);
ret = 1;
2014-04-22 10:43:01 +00:00
continue;
}
2014-11-13 15:24:43 +00:00
concat(fp, argv[0], stdout, "<stdout>");
2014-04-22 10:43:01 +00:00
fclose(fp);
}
2011-05-23 01:36:34 +00:00
}
return ret;
2011-05-23 01:36:34 +00:00
}