Piss people off by removing [+-][0-9]+ options from tail.
[oweals/busybox.git] / coreutils / head.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini head implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by John Beppu <beppu@lineo.com>
8  *
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
25 #include "busybox.h"
26 #include <errno.h>
27 #include <stdio.h>
28
29 int head(int len, FILE *fp)
30 {
31         int i;
32         char *input;
33
34         for (i = 0; i < len; i++) {
35                 if ((input = get_line_from_file(fp)) == NULL)
36                         break;
37                 fputs(input, stdout);
38                 free(input);
39         }
40         return 0;
41 }
42
43 /* BusyBoxed head(1) */
44 int head_main(int argc, char **argv)
45 {
46         FILE *fp;
47         int need_headers, opt, len = 10, status = EXIT_SUCCESS;
48
49         /* parse argv[] */
50         while ((opt = getopt(argc, argv, "n:")) > 0) {
51                 switch (opt) {
52                 case 'n':
53                         len = atoi(optarg);
54                         if (len >= 1)
55                                 break;
56                         /* fallthrough */
57                 default:
58                         usage(head_usage);
59                 }
60         }
61
62         /* get rest of argv[] or stdin if nothing's left */
63         if (argv[optind] == NULL) {
64                 head(len, stdin);
65                 return status;
66         } 
67
68         need_headers = optind != (argc - 1);
69         while (argv[optind]) {
70                 if (strcmp(argv[optind], "-") == 0) {
71                         fp = stdin;
72                         argv[optind] = "standard input";
73                 } else {
74                         if ((fp = wfopen(argv[optind], "r")) == NULL)
75                                 status = EXIT_FAILURE;
76                 }
77                 if (fp) {
78                         if (need_headers) {
79                                 fprintf(stdout, "==> %s <==\n", argv[optind]);
80                         }
81                         head(len, fp);
82                         if (errno) {
83                                 errorMsg("%s: %s\n", argv[optind], strerror(errno));
84                                 status = EXIT_FAILURE;
85                                 errno = 0;
86                         }
87                         if (optind < argc - 1)
88                                 fprintf(stdout, "\n");
89                         if (fp != stdin)
90                                 fclose(fp);
91                 }
92                 optind++;
93         }
94
95         return status;
96 }