view toys/cat.c @ 281:1c160cadf5b9

Thinko in cat.
author Rob Landley <rob@landley.net>
date Wed, 09 Apr 2008 00:22:04 -0500
parents 0ca2fcee572b
children d1ae502ee190
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * hello.c - A hello world program.
 *
 * 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.

	  -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, len);
	}
}

void cat_main(void)
{
	loopfiles(toys.optargs, do_cat);
}