Files
sbase/cat.c
T

62 lines
1.0 KiB
C
Raw Normal View History

2011-05-23 02:36:34 +01:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2015-05-19 17:44:15 +02:00
#include <string.h>
2011-05-24 11:05:36 +01:00
#include <unistd.h>
2013-03-05 21:46:48 +01:00
2011-05-26 16:18:42 -01:00
#include "text.h"
2011-05-23 02:36:34 +01:00
#include "util.h"
2016-03-01 11:04:11 +01:00
static void
uconcat(FILE *fp1, const char *s1, FILE *fp2, const char *s2)
{
int c;
setbuf(fp2, NULL);
while ((c = getc(fp1)) != EOF)
putc(c, fp2);
}
2013-10-07 16:07:19 +01:00
static void
usage(void)
{
2015-03-02 00:36:51 +01:00
eprintf("usage: %s [-u] [file ...]\n", argv0);
2013-10-07 16:07:19 +01:00
}
2011-05-23 02:36:34 +01:00
int
main(int argc, char *argv[])
{
FILE *fp;
int ret = 0;
2016-03-01 11:04:11 +01:00
void (*cat)(FILE *, const char *, FILE *, const char *) = &concat;
2011-05-23 02:36:34 +01:00
2012-05-31 19:38:18 +01:00
ARGBEGIN {
case 'u':
2016-03-01 11:04:11 +01:00
cat = &uconcat;
break;
2012-05-31 19:38:18 +01:00
default:
2013-10-07 16:07:19 +01:00
usage();
2015-11-01 10:16:49 +00:00
} ARGEND
2012-05-31 19:38:18 +01:00
2015-03-16 10:36:36 +01:00
if (!argc) {
2016-03-01 11:04:11 +01:00
cat(stdin, "<stdin>", stdout, "<stdout>");
2014-04-22 13:43:01 +03:00
} else {
for (; *argv; argc--, argv++) {
2015-05-19 17:44:15 +02:00
if (!strcmp(*argv, "-")) {
2015-05-15 13:28:39 +02:00
*argv = "<stdin>";
fp = stdin;
2015-03-02 00:36:51 +01:00
} else if (!(fp = fopen(*argv, "r"))) {
weprintf("fopen %s:", *argv);
ret = 1;
2015-05-15 13:28:39 +02:00
continue;
2014-04-22 13:43:01 +03:00
}
2016-03-01 11:04:11 +01:00
cat(fp, *argv, stdout, "<stdout>");
2015-05-15 13:28:39 +02:00
if (fp != stdin && fshut(fp, *argv))
ret = 1;
}
2011-05-23 02:36:34 +01:00
}
2015-03-02 00:36:51 +01:00
2015-05-25 01:33:19 +02:00
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
return ret;
2011-05-23 02:36:34 +01:00
}