# HG changeset patch # User Rob Landley # Date 1207329561 18000 # Node ID 0ca2fcee572b4af422c2726f56b51b4c5336fb14 # Parent 4fa9937b00735901d6362db2b59612c438dcd61e Spent the five minutes to implement "cat". diff -r 4fa9937b0073 -r 0ca2fcee572b toys/cat.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toys/cat.c Fri Apr 04 12:19:21 2008 -0500 @@ -0,0 +1,38 @@ +/* vi: set sw=4 ts=4: + * + * hello.c - A hello world program. + * + * Copyright 2006 Rob Landley + * + * See http://www.opengroup.org/onlinepubs/009695399/utilities/cat.html + +USE_CAT(NEWTOY(cat, "u", TOYFLAG_BIN)) + +config CAT + bool "cat" + default y + help + usage: cat [-u] [file...] + Copy (concatenate) files to stdout. If no files listed, copy from stdin. + + -u Copy one byte at a time (slow). +*/ + +#include "toys.h" + +static void do_cat(int fd, char *name) +{ + int len, size=toys.optflags ? 1 : sizeof(toybuf); + + for (;;) { + len = xread(fd, toybuf, size); + if (len<0) toys.exitval = EXIT_FAILURE; + if (len<1) break; + xwrite(1, toybuf, size); + } +} + +void cat_main(void) +{ + loopfiles(toys.optargs, do_cat); +}