2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-10 13:12:50 +05:30
|
|
|
/*
|
|
|
|
* Mini head implementation for busybox
|
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 1999 by Lineo, inc. and John Beppu
|
|
|
|
* Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
|
1999-12-10 13:12:50 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdlib.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <string.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2001-03-10 02:54:12 +05:30
|
|
|
static int head(int len, FILE *fp)
|
1999-12-10 13:12:50 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int i;
|
2000-09-27 09:39:22 +05:30
|
|
|
char *input;
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
for (i = 0; i < len; i++) {
|
2000-09-27 09:39:22 +05:30
|
|
|
if ((input = get_line_from_file(fp)) == NULL)
|
2000-02-09 01:28:47 +05:30
|
|
|
break;
|
2000-09-27 09:39:22 +05:30
|
|
|
fputs(input, stdout);
|
|
|
|
free(input);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
return 0;
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* BusyBoxed head(1) */
|
2000-02-09 01:28:47 +05:30
|
|
|
int head_main(int argc, char **argv)
|
1999-12-10 13:12:50 +05:30
|
|
|
{
|
2000-09-27 09:39:22 +05:30
|
|
|
FILE *fp;
|
|
|
|
int need_headers, opt, len = 10, status = EXIT_SUCCESS;
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* parse argv[] */
|
2000-09-27 09:39:22 +05:30
|
|
|
while ((opt = getopt(argc, argv, "n:")) > 0) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'n':
|
|
|
|
len = atoi(optarg);
|
|
|
|
if (len >= 1)
|
2000-02-09 01:28:47 +05:30
|
|
|
break;
|
2000-09-27 09:39:22 +05:30
|
|
|
/* fallthrough */
|
|
|
|
default:
|
2001-02-15 02:53:06 +05:30
|
|
|
show_usage();
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* get rest of argv[] or stdin if nothing's left */
|
2000-09-27 09:39:22 +05:30
|
|
|
if (argv[optind] == NULL) {
|
2000-02-09 01:28:47 +05:30
|
|
|
head(len, stdin);
|
2000-09-27 09:39:22 +05:30
|
|
|
return status;
|
|
|
|
}
|
1999-12-10 13:12:50 +05:30
|
|
|
|
2000-09-27 09:39:22 +05:30
|
|
|
need_headers = optind != (argc - 1);
|
|
|
|
while (argv[optind]) {
|
|
|
|
if (strcmp(argv[optind], "-") == 0) {
|
|
|
|
fp = stdin;
|
|
|
|
argv[optind] = "standard input";
|
|
|
|
} else {
|
|
|
|
if ((fp = wfopen(argv[optind], "r")) == NULL)
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
if (fp) {
|
|
|
|
if (need_headers) {
|
2001-01-18 08:27:08 +05:30
|
|
|
printf("==> %s <==\n", argv[optind]);
|
2000-09-27 09:39:22 +05:30
|
|
|
}
|
|
|
|
head(len, fp);
|
2001-08-06 21:39:09 +05:30
|
|
|
if (ferror(fp)) {
|
2000-12-18 09:27:16 +05:30
|
|
|
perror_msg("%s", argv[optind]);
|
2000-09-27 09:39:22 +05:30
|
|
|
status = EXIT_FAILURE;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-09-27 09:39:22 +05:30
|
|
|
if (optind < argc - 1)
|
2001-01-18 08:27:08 +05:30
|
|
|
putchar('\n');
|
2000-09-27 09:39:22 +05:30
|
|
|
if (fp != stdin)
|
|
|
|
fclose(fp);
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
2000-09-27 09:39:22 +05:30
|
|
|
optind++;
|
1999-12-10 13:12:50 +05:30
|
|
|
}
|
|
|
|
|
2000-09-27 09:39:22 +05:30
|
|
|
return status;
|
|
|
|
}
|