aboutsummaryrefslogtreecommitdiff
path: root/toys/cat.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
committerRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
commit3a9241add947cb6d24b5de7a8927517426a78795 (patch)
treed122ab6570439cd6b17c7d73ed8d4e085e0b8a95 /toys/cat.c
parent689f095bc976417bf50810fe59a3b3ac32b21105 (diff)
downloadtoybox-3a9241add947cb6d24b5de7a8927517426a78795.tar.gz
Move commands into "posix", "lsb", and "other" menus/directories.
Diffstat (limited to 'toys/cat.c')
-rw-r--r--toys/cat.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/toys/cat.c b/toys/cat.c
deleted file mode 100644
index 81bfcafd..00000000
--- a/toys/cat.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* vi: set sw=4 ts=4:
- *
- * cat.c - copy inputs to stdout.
- *
- * Copyright 2006 Rob Landley <rob@landley.net>
- *
- * 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.
- Filename "-" is a synonym for 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 = read(fd, toybuf, size);
- if (len<0) {
- perror_msg("%s",name);
- toys.exitval = EXIT_FAILURE;
- }
- if (len<1) break;
- xwrite(1, toybuf, len);
- }
-}
-
-void cat_main(void)
-{
- loopfiles(toys.optargs, do_cat);
-}