#include #include int multi; int nlines; char *status = nil; int line(int fd, char *file) { char c; char *p; int m, n, nalloc; char *buf; nalloc = 8192; buf = malloc(8192); if (buf == nil) { fprint(2, "malloc error"); exits("malloc error"); } for(m=0; ; ){ n = read(fd, buf+m, 8192-(m%8192)); if(n < 0){ fprint(2, "read: error reading %s: %r\n", file); exits("read error"); } if(n == 0){ if(m == 0) status = "eof"; break; } m = m+n; if((p = strchr(buf, '\n')) != 0) { *(p+1) = '\0'; break; } if(m >= nalloc) { nalloc += 8192; buf = realloc(buf, nalloc); if(buf == nil){ fprint(2, "read: malloc error: %r\n"); exits("malloc"); } } } if(m > 0) write(1, buf, m); free(buf); return m; } void lines(int fd, char *file) { do{ if(line(fd, file) == 0) break; }while(multi || --nlines>0); } void main(int argc, char *argv[]) { int i, fd; char *s; ARGBEGIN{ case 'm': multi = 1; break; case 'n': s = ARGF(); if(s){ nlines = atoi(s); break; } /* fall through */ default: fprint(2, "usage: read [-m] [-n nlines] [files...]\n"); exits("usage"); }ARGEND if(argc == 0) lines(0, ""); else for(i=0; i