blob: 0d32efe84958913481df5715a64029a954aa3095 [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
2 * Mini Cat implementation for busybox
3 *
Eric Andersen887991c1999-10-20 20:09:47 +00004 * Copyright (C) 1999 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersencc8ed391999-10-05 16:24:54 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include "internal.h"
24#include <stdio.h>
25
Eric Andersen3cf52d11999-10-12 22:26:06 +000026
27static void print_file( FILE *file)
28{
29 int c;
30 while ((c = getc(file)) != EOF)
31 putc(c, stdout);
32 fclose(file);
33 fflush(stdout);
34}
Eric Andersencc8ed391999-10-05 16:24:54 +000035
Eric Andersene77ae3a1999-10-19 20:03:34 +000036extern int cat_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000037{
Eric Andersen3cf52d11999-10-12 22:26:06 +000038 FILE *file;
Eric Andersencc8ed391999-10-05 16:24:54 +000039
Eric Andersen3cf52d11999-10-12 22:26:06 +000040 if (argc==1) {
41 print_file( stdin);
42 exit( TRUE);
43 }
44
45 if ( **(argv+1) == '-' ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000046 usage ("cat [file ...]\n");
Eric Andersencc8ed391999-10-05 16:24:54 +000047 }
48 argc--;
Eric Andersencc8ed391999-10-05 16:24:54 +000049
Eric Andersenabc0f4f1999-12-08 23:19:36 +000050 while (argc-- > 0 && *(argv++) != '\0' && strlen(*argv) ) {
51 file = fopen(*argv, "r");
Eric Andersencc8ed391999-10-05 16:24:54 +000052 if (file == NULL) {
Eric Andersen2b69c401999-10-05 22:58:32 +000053 perror(*argv);
Eric Andersen2ce1edc1999-10-12 15:42:48 +000054 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000055 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000056 print_file( file);
Eric Andersencc8ed391999-10-05 16:24:54 +000057 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +000058 exit(TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000059}