hush/miscutils/strings.c

88 lines
1.5 KiB
C
Raw Normal View History

2002-11-07 02:09:37 +00:00
/* vi: set sw=4 ts=4: */
/*
* strings implementation for busybox
*
* Copyright Tito Ragusa <farmatito@tiscali.it>
2006-09-17 16:28:10 +00:00
*
2006-02-27 22:34:41 +00:00
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
2002-11-07 02:09:37 +00:00
*/
#include <getopt.h>
#include "libbb.h"
2002-11-07 02:09:37 +00:00
#define WHOLE_FILE 1
#define PRINT_NAME 2
#define PRINT_OFFSET 4
#define SIZE 8
int strings_main(int argc, char **argv);
int strings_main(int argc, char **argv)
2002-11-07 02:09:37 +00:00
{
int n, c, i = 0, status = EXIT_SUCCESS;
unsigned opt;
unsigned long count;
FILE *file = stdin;
char *string;
const char *fmt = "%s: ";
const char *n_arg = "4";
2006-01-25 00:08:53 +00:00
opt = getopt32(argc, argv, "afon:", &n_arg);
/* -a is our default behaviour */
2006-01-25 00:08:53 +00:00
2002-11-07 02:09:37 +00:00
argc -= optind;
argv += optind;
2006-10-08 12:49:22 +00:00
n = xatoul_range(n_arg, 1, INT_MAX);
string = xzalloc(n + 1);
n--;
2006-01-25 00:08:53 +00:00
2006-02-27 22:34:41 +00:00
if (argc == 0) {
fmt = "{%s}: ";
*argv = (char *)bb_msg_standard_input;
goto PIPE;
}
2006-01-25 00:08:53 +00:00
do {
file = fopen_or_warn(*argv, "r");
2006-10-08 12:49:22 +00:00
if (file) {
PIPE:
count = 0;
do {
c = fgetc(file);
2006-02-27 22:34:41 +00:00
if (isprint(c) || c == '\t') {
if (i <= n) {
2006-02-27 22:34:41 +00:00
string[i] = c;
} else {
putchar(c);
}
if (i == n) {
if (opt & PRINT_NAME) {
printf(fmt, *argv);
}
if (opt & PRINT_OFFSET) {
2006-02-27 22:34:41 +00:00
printf("%7lo ", count - n);
}
printf("%s", string);
}
i++;
} else {
if (i > n) {
2003-08-30 12:38:13 +00:00
putchar('\n');
}
i = 0;
}
count++;
} while (c != EOF);
fclose_if_not_stdin(file);
} else {
2006-02-27 22:34:41 +00:00
status = EXIT_FAILURE;
}
2006-02-27 22:34:41 +00:00
} while (--argc > 0);
2006-02-27 22:34:41 +00:00
if (ENABLE_FEATURE_CLEAN_UP)
free(string);
2006-10-26 23:21:47 +00:00
fflush_stdout_and_exit(status);
2002-11-07 02:09:37 +00:00
}