From 0d3961f2d3cfe3eeecdd4ffb5e601b5058537570 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 9 Feb 2012 06:36:42 -0600 Subject: Cleanups for head. --- toys/head.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/toys/head.c b/toys/head.c index 8f0baa24..87fbe62a 100644 --- a/toys/head.c +++ b/toys/head.c @@ -6,13 +6,14 @@ * * See http://www.opengroup.org/onlinepubs/009695399/utilities/head.html -USE_HEAD(NEWTOY(head, "n#", TOYFLAG_BIN)) +USE_HEAD(NEWTOY(head, "n#<0=10", TOYFLAG_BIN)) config HEAD bool "head" default y help usage: head [-n number] [file...] + Copy first lines from files to stdout. If no files listed, copy from stdin. Filename "-" is a synonym for stdin. @@ -34,11 +35,11 @@ static void do_head(int fd, char *name) if (toys.optc > 1) { // Print an extra newline for all but the first file - if (TT.file_no++ > 0) printf("\n"); - printf("==> %s <==\n", name); + if (TT.file_no++) printf("\n"); + xprintf("==> %s <==\n", name); } - for (;lines>0;) { + while (lines) { len = read(fd, toybuf, size); if (len<0) { perror_msg("%s",name); @@ -46,17 +47,14 @@ static void do_head(int fd, char *name) } if (len<1) break; - for(i=0; i