Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini head implementation for busybox |
| 4 | * |
| 5 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999,2000 by Lineo, inc. |
Eric Andersen | cf53687 | 1999-12-10 08:29:20 +0000 | [diff] [blame] | 7 | * Written by John Beppu <beppu@lineo.com> |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 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 "internal.h" |
| 26 | #include <errno.h> |
| 27 | #include <stdio.h> |
| 28 | |
| 29 | const char head_usage[] = |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 30 | "head [OPTION] [FILE]...\n" |
| 31 | #ifndef BB_FEATURE_TRIVIAL_HELP |
| 32 | "\nPrint first 10 lines of each FILE to standard output.\n" |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 33 | "With more than one FILE, precede each with a header giving the\n" |
| 34 | "file name. With no FILE, or when FILE is -, read standard input.\n\n" |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 35 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 36 | "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10\n" |
| 37 | #endif |
| 38 | ; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 39 | |
| 40 | int head(int len, FILE * src) |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 41 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 42 | int i; |
| 43 | char buffer[1024]; |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 44 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 45 | for (i = 0; i < len; i++) { |
| 46 | fgets(buffer, 1024, src); |
| 47 | if (feof(src)) { |
| 48 | break; |
| 49 | } |
| 50 | fputs(buffer, stdout); |
| 51 | } |
| 52 | return 0; |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /* BusyBoxed head(1) */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 56 | int head_main(int argc, char **argv) |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 57 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 58 | char opt; |
| 59 | int len = 10, tmplen, i; |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 60 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 61 | /* parse argv[] */ |
| 62 | for (i = 1; i < argc; i++) { |
| 63 | if (argv[i][0] == '-') { |
| 64 | opt = argv[i][1]; |
| 65 | switch (opt) { |
| 66 | case 'n': |
| 67 | tmplen = 0; |
| 68 | if (++i < argc) |
| 69 | tmplen = atoi(argv[i]); |
| 70 | if (tmplen < 1) |
| 71 | usage(head_usage); |
| 72 | len = tmplen; |
| 73 | break; |
| 74 | case '-': |
| 75 | case 'h': |
| 76 | usage(head_usage); |
| 77 | default: |
| 78 | fprintf(stderr, "head: invalid option -- %c\n", opt); |
| 79 | usage(head_usage); |
| 80 | } |
| 81 | } else { |
| 82 | break; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | /* get rest of argv[] or stdin if nothing's left */ |
| 87 | if (i >= argc) { |
| 88 | head(len, stdin); |
| 89 | |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 90 | } else { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 91 | int need_headers = ((argc - i) > 1); |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 92 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 93 | for (; i < argc; i++) { |
| 94 | FILE *src; |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 95 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 96 | src = fopen(argv[i], "r"); |
| 97 | if (!src) { |
| 98 | fprintf(stderr, "head: %s: %s\n", argv[i], |
| 99 | strerror(errno)); |
| 100 | } else { |
| 101 | /* emulating GNU behaviour */ |
| 102 | if (need_headers) { |
| 103 | fprintf(stdout, "==> %s <==\n", argv[i]); |
| 104 | } |
| 105 | head(len, src); |
| 106 | if (i < argc - 1) { |
| 107 | fprintf(stdout, "\n"); |
| 108 | } |
| 109 | } |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 110 | } |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 111 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 112 | exit(0); |
John Beppu | 3157b1f | 1999-12-10 07:42:50 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 115 | /* $Id: head.c,v 1.10 2000/05/12 19:41:47 erik Exp $ */ |