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
|
|
|
|
*
|
|
|
|
*
|
2000-04-13 06:48:56 +05:30
|
|
|
* Copyright (C) 1999,2000 by Lineo, inc.
|
1999-12-10 13:59:20 +05:30
|
|
|
* Written by John Beppu <beppu@lineo.com>
|
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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-12-10 13:12:50 +05:30
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2000-09-27 09:39:22 +05:30
|
|
|
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:
|
|
|
|
usage(head_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) {
|
|
|
|
fprintf(stdout, "==> %s <==\n", argv[optind]);
|
|
|
|
}
|
|
|
|
head(len, fp);
|
|
|
|
if (errno) {
|
2000-12-18 09:27:16 +05:30
|
|
|
perror_msg("%s", argv[optind]);
|
2000-09-27 09:39:22 +05:30
|
|
|
status = EXIT_FAILURE;
|
|
|
|
errno = 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-09-27 09:39:22 +05:30
|
|
|
if (optind < argc - 1)
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
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;
|
|
|
|
}
|