2019-06-11 15:57:14 +02:00
|
|
|
#include "kernel/types.h"
|
|
|
|
#include "kernel/stat.h"
|
|
|
|
#include "user/user.h"
|
2006-08-08 21:58:06 +02:00
|
|
|
|
2007-08-24 22:03:40 +02:00
|
|
|
char buf[512];
|
2006-08-08 21:58:06 +02:00
|
|
|
|
2006-08-23 03:09:24 +02:00
|
|
|
void
|
2007-08-28 06:13:24 +02:00
|
|
|
cat(int fd)
|
2006-08-08 21:58:06 +02:00
|
|
|
{
|
2007-08-24 22:03:40 +02:00
|
|
|
int n;
|
2006-08-08 21:58:06 +02:00
|
|
|
|
2016-09-19 13:01:30 +02:00
|
|
|
while((n = read(fd, buf, sizeof(buf))) > 0) {
|
|
|
|
if (write(1, buf, n) != n) {
|
2019-11-07 15:46:20 +01:00
|
|
|
fprintf(2, "cat: write error\n");
|
2019-09-11 16:04:40 +02:00
|
|
|
exit(1);
|
2016-09-19 13:01:30 +02:00
|
|
|
}
|
|
|
|
}
|
2007-08-24 22:03:40 +02:00
|
|
|
if(n < 0){
|
2019-11-07 15:46:20 +01:00
|
|
|
fprintf(2, "cat: read error\n");
|
2019-09-11 16:04:40 +02:00
|
|
|
exit(1);
|
2006-08-08 21:58:06 +02:00
|
|
|
}
|
2006-08-23 03:09:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int fd, i;
|
2006-08-08 21:58:06 +02:00
|
|
|
|
2007-08-28 20:32:08 +02:00
|
|
|
if(argc <= 1){
|
2007-08-28 06:13:24 +02:00
|
|
|
cat(0);
|
2019-11-07 15:46:20 +01:00
|
|
|
exit(0);
|
2006-08-23 03:09:24 +02:00
|
|
|
}
|
2006-08-08 21:58:06 +02:00
|
|
|
|
2007-08-24 22:03:40 +02:00
|
|
|
for(i = 1; i < argc; i++){
|
|
|
|
if((fd = open(argv[i], 0)) < 0){
|
2019-11-07 15:46:20 +01:00
|
|
|
fprintf(2, "cat: cannot open %s\n", argv[i]);
|
2019-09-11 16:04:40 +02:00
|
|
|
exit(1);
|
2007-08-24 22:03:40 +02:00
|
|
|
}
|
2007-08-28 06:13:24 +02:00
|
|
|
cat(fd);
|
2007-08-24 22:03:40 +02:00
|
|
|
close(fd);
|
|
|
|
}
|
2019-09-10 18:30:10 +02:00
|
|
|
exit(0);
|
2006-08-08 21:58:06 +02:00
|
|
|
}
|