blob: 2f746f96d2c3dca1d7dbba32915a0d38502f8e6f [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu059f1521999-12-10 05:27:16 +00002/*
3 * Mini tee implementation for busybox
4 *
5 *
6 * Copyright (C) 1999 by Lineo, inc.
Eric Andersen70e2f0b1999-12-10 06:45:42 +00007 * Written by John Beppu <beppu@lineo.com>
John Beppu059f1521999-12-10 05:27:16 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
John Beppua3e0d791999-12-10 07:41:03 +000025#include "internal.h"
John Beppu059f1521999-12-10 05:27:16 +000026#include <stdio.h>
John Beppua3e0d791999-12-10 07:41:03 +000027
28static const char tee_usage[] =
Erik Andersene49d5ec2000-02-08 19:58:47 +000029 "tee [OPTION]... [FILE]...\n\n"
30 "Copy standard input to each FILE, and also to standard output.\n\n"
31 "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
Eric Andersen2cb55071999-12-10 08:25:07 +000032#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000033 "\t-i\tignore interrupt signals\n"
Eric Andersen2cb55071999-12-10 08:25:07 +000034#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000035;
Eric Andersen2cb55071999-12-10 08:25:07 +000036
John Beppu059f1521999-12-10 05:27:16 +000037
38/* FileList _______________________________________________________________ */
39
40#define FL_MAX 1024
41static FILE *FileList[FL_MAX];
Erik Andersene49d5ec2000-02-08 19:58:47 +000042static int FL_end;
John Beppu059f1521999-12-10 05:27:16 +000043
Erik Andersene49d5ec2000-02-08 19:58:47 +000044typedef void (FL_Function) (FILE * file, char c);
45
John Beppu059f1521999-12-10 05:27:16 +000046
47/* apply a function to everything in FileList */
Erik Andersene49d5ec2000-02-08 19:58:47 +000048static void FL_apply(FL_Function * f, char c)
John Beppu059f1521999-12-10 05:27:16 +000049{
Erik Andersene49d5ec2000-02-08 19:58:47 +000050 int i;
51
52 for (i = 0; i <= FL_end; i++) {
53 f(FileList[i], c);
54 }
John Beppu059f1521999-12-10 05:27:16 +000055}
56
John Beppu059f1521999-12-10 05:27:16 +000057/* FL_Function for writing to files*/
Erik Andersene49d5ec2000-02-08 19:58:47 +000058static void tee_fwrite(FILE * file, char c)
John Beppu059f1521999-12-10 05:27:16 +000059{
Erik Andersene49d5ec2000-02-08 19:58:47 +000060 fputc(c, file);
John Beppu059f1521999-12-10 05:27:16 +000061}
62
63/* FL_Function for closing files */
Erik Andersene49d5ec2000-02-08 19:58:47 +000064static void tee_fclose(FILE * file, char c)
John Beppu059f1521999-12-10 05:27:16 +000065{
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 fclose(file);
John Beppu059f1521999-12-10 05:27:16 +000067}
68
Eric Andersen2cb55071999-12-10 08:25:07 +000069/* ________________________________________________________________________ */
70
John Beppu059f1521999-12-10 05:27:16 +000071/* BusyBoxed tee(1) */
Erik Andersene49d5ec2000-02-08 19:58:47 +000072int tee_main(int argc, char **argv)
John Beppu059f1521999-12-10 05:27:16 +000073{
Erik Andersene49d5ec2000-02-08 19:58:47 +000074 int i;
75 char c;
76 char opt;
77 char opt_fopen[2] = "w";
78 FILE *file;
John Beppu059f1521999-12-10 05:27:16 +000079
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 /* parse argv[] */
81 for (i = 1; i < argc; i++) {
82 if (argv[i][0] == '-') {
83 opt = argv[i][1];
84 switch (opt) {
85 case 'a':
86 opt_fopen[0] = 'a';
87 break;
Eric Andersen2cb55071999-12-10 08:25:07 +000088#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 case 'i':
90 fprintf(stderr, "ignore interrupt not implemented\n");
91 break;
Eric Andersen2cb55071999-12-10 08:25:07 +000092#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 default:
94 usage(tee_usage);
95 }
96 } else {
97 break;
98 }
John Beppu059f1521999-12-10 05:27:16 +000099 }
John Beppu059f1521999-12-10 05:27:16 +0000100
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 /* init FILE pointers */
102 FL_end = 0;
103 FileList[0] = stdout;
104 for (; i < argc; i++) {
105 /* add a file to FileList */
106 file = fopen(argv[i], opt_fopen);
107 if (!file) {
108 continue;
109 }
110 if (FL_end < FL_MAX) {
111 FileList[++FL_end] = file;
112 }
Eric Andersen2cb55071999-12-10 08:25:07 +0000113 }
John Beppu059f1521999-12-10 05:27:16 +0000114
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 /* read and redirect */
116 while ((c = (char) getchar()) && (!feof(stdin))) {
117 FL_apply(tee_fwrite, c);
118 }
John Beppu059f1521999-12-10 05:27:16 +0000119
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 /* clean up */
121 FL_apply(tee_fclose, 0);
122 exit(0);
John Beppu059f1521999-12-10 05:27:16 +0000123}
124
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125/* $Id: tee.c,v 1.6 2000/02/08 19:58:47 erik Exp $ */