sbase/cat.c

25 lines
531 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-24 06:05:36 -04:00
#include <unistd.h>
2011-05-26 13:18:42 -04:00
#include "text.h"
2011-05-22 21:36:34 -04:00
#include "util.h"
int
main(int argc, char *argv[])
{
FILE *fp;
2011-05-24 06:05:36 -04:00
if(getopt(argc, argv, "") != -1)
exit(EXIT_FAILURE);
if(optind == argc)
2011-05-26 13:18:42 -04:00
concat(stdin, "<stdin>", stdout, "<stdout>");
2011-05-24 06:05:36 -04:00
else for(; optind < argc; optind++) {
if(!(fp = fopen(argv[optind], "r")))
eprintf("fopen %s:", argv[optind]);
2011-05-26 13:18:42 -04:00
concat(fp, argv[optind], stdout, "<stdout>");
2011-05-22 21:36:34 -04:00
fclose(fp);
}
return EXIT_SUCCESS;
}