micro-utils/coreutils/cat.c

45 lines
718 B
C
Raw Permalink Normal View History

#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
void cat(const int fd) {
2023-11-04 17:55:02 +03:00
char buf[8096];
ssize_t len;
2023-10-30 18:09:33 +03:00
while ((len = read(fd, buf, sizeof(buf))) > 0)
if (write(1, buf, len) != len)
fprintf(stderr, "cat: write error copying\n");
}
int main(const int argc, const char **argv) {
2023-11-07 18:52:38 +03:00
if (argc == 1)
cat(STDIN_FILENO);
else {
2023-10-30 18:09:33 +03:00
for (int i = 1; i < argc; i++) {
2023-11-07 19:41:47 +03:00
if (argv[i][0] == '-') {
2023-11-07 18:52:38 +03:00
if (argv[i][1])
2023-11-07 19:41:47 +03:00
continue;
2023-11-07 18:52:38 +03:00
else
cat(STDIN_FILENO);
2023-10-30 18:09:33 +03:00
2023-11-07 19:41:47 +03:00
continue;
}
int fd = open(argv[i], O_RDONLY);
if (fd < 0) {
fprintf(stderr, "cat: %s %s\n", argv[i], strerror(errno));
return 1;
}
cat(fd);
close(fd);
}
}
return 0;
}