SUpport old style -[::digit::] options for head and tail
[platform/upstream/busybox.git] / coreutils / head.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini head implementation for busybox
4  *
5  * Copyright (C) 1999 by Lineo, inc. and John Beppu
6  * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <stdio.h>
25 #include <getopt.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include "busybox.h"
29
30 static int head(int len, FILE *fp)
31 {
32         int i;
33         char *input;
34
35         for (i = 0; i < len; i++) {
36                 if ((input = get_line_from_file(fp)) == NULL)
37                         break;
38                 fputs(input, stdout);
39                 free(input);
40         }
41         return 0;
42 }
43
44 /* BusyBoxed head(1) */
45 int head_main(int argc, char **argv)
46 {
47         FILE *fp;
48         int need_headers, opt, len = 10, status = EXIT_SUCCESS;
49
50         if (( argc >= 2 ) && ( strlen ( argv [1] ) >= 2 ) && ( argv [1][0] == '-' ) && isdigit ( argv [1][1] )) {
51                 len = atoi ( &argv [1][1] );
52                 optind = 2;
53         }
54
55         /* parse argv[] */
56         while ((opt = getopt(argc, argv, "n:")) > 0) {
57                 switch (opt) {
58                 case 'n':
59                         len = atoi(optarg);
60                         if (len >= 0)
61                                 break;
62                         /* fallthrough */
63                 default:
64                         show_usage();
65                 }
66         }
67
68         /* get rest of argv[] or stdin if nothing's left */
69         if (argv[optind] == NULL) {
70                 head(len, stdin);
71                 return status;
72         } 
73
74         need_headers = optind != (argc - 1);
75         while (argv[optind]) {
76                 if (strcmp(argv[optind], "-") == 0) {
77                         fp = stdin;
78                         argv[optind] = "standard input";
79                 } else {
80                         if ((fp = wfopen(argv[optind], "r")) == NULL)
81                                 status = EXIT_FAILURE;
82                 }
83                 if (fp) {
84                         if (need_headers) {
85                                 printf("==> %s <==\n", argv[optind]);
86                         }
87                         head(len, fp);
88                         if (ferror(fp)) {
89                                 perror_msg("%s", argv[optind]);
90                                 status = EXIT_FAILURE;
91                         }
92                         if (optind < argc - 1)
93                                 putchar('\n');
94                         if (fp != stdin)
95                                 fclose(fp);
96                 }
97                 optind++;
98         }
99
100         return status;
101 }