1 /* vi: set sw=4 ts=4: */
3 * tee implementation for busybox
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 /* BB_AUDIT SUSv3 compliant */
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
13 //usage:#define tee_trivial_usage
14 //usage: "[-ai] [FILE]..."
15 //usage:#define tee_full_usage "\n\n"
16 //usage: "Copy stdin to each FILE, and also to stdout\n"
18 //usage: "\n -a Append to the given FILEs, don't overwrite"
19 //usage: "\n -i Ignore interrupt signals (SIGINT)"
21 //usage:#define tee_example_usage
22 //usage: "$ echo \"Hello\" | tee /tmp/foo\n"
23 //usage: "$ cat /tmp/foo\n"
28 int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29 int tee_main(int argc, char **argv)
31 const char *mode = "w\0a";
37 //TODO: make unconditional
38 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
40 # define buf bb_common_bufsiz1
44 retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
48 mode += (retval & 2); /* Since 'a' is the 2nd option... */
51 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
53 retval = EXIT_SUCCESS;
54 /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
55 * that doesn't consume all its input. Good idea... */
56 signal(SIGPIPE, SIG_IGN);
58 /* Allocate an array of FILE *'s, with one extra for a sentinel. */
59 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
60 np = names = argv - 1;
66 if (NOT_LONE_DASH(*argv)) {
67 *fp = fopen_or_warn(*argv, mode);
69 retval = EXIT_FAILURE;
76 setbuf(*fp, NULL); /* tee must not buffer output. */
80 /* names[0] will be filled later */
82 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
83 while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
86 fwrite(buf, 1, c, *fp);
89 if (c < 0) { /* Make sure read errors are signaled. */
90 retval = EXIT_FAILURE;
93 setvbuf(stdout, NULL, _IONBF, 0);
94 while ((c = getchar()) != EOF) {
102 /* Now we need to check for i/o errors on stdin and the various
103 * output files. Since we know that the first entry in the output
104 * file table is stdout, we can save one "if ferror" test by
105 * setting the first entry to stdin and checking stdout error
106 * status with fflush_stdout_and_exit()... although fflush()ing
107 * is unnecessary here. */
110 names[0] = (char *) bb_msg_standard_input;
112 do { /* Now check for input and output errors. */
113 /* Checking ferror should be sufficient, but we may want to fclose.
114 * If we do, remember not to close stdin! */
115 die_if_ferror(*fp++, *np++);
118 fflush_stdout_and_exit(retval);