2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
/*
|
2003-03-19 14:43:01 +05:30
|
|
|
* cat implementation for busybox
|
1999-10-05 21:54:54 +05:30
|
|
|
*
|
2003-03-19 14:43:01 +05:30
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
1999-10-05 21:54:54 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
1999-10-05 21:54:54 +05:30
|
|
|
*/
|
2010-06-04 23:29:49 +05:30
|
|
|
//config:config CAT
|
2017-07-19 01:31:24 +05:30
|
|
|
//config: bool "cat (5.6 kb)"
|
2010-06-06 07:44:28 +05:30
|
|
|
//config: default y
|
2010-06-04 23:29:49 +05:30
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: cat is used to concatenate files and print them to the standard
|
|
|
|
//config: output. Enable this option if you wish to enable the 'cat' utility.
|
2017-04-12 20:47:29 +05:30
|
|
|
//config:
|
2017-07-14 13:26:13 +05:30
|
|
|
//config:config FEATURE_CATN
|
|
|
|
//config: bool "Enable -n and -b options"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on CAT
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: -n numbers all output lines while -b numbers nonempty output lines.
|
2017-07-14 13:26:13 +05:30
|
|
|
//config:
|
2017-04-12 20:47:29 +05:30
|
|
|
//config:config FEATURE_CATV
|
|
|
|
//config: bool "cat -v[etA]"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on CAT
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: Display nonprinting characters as escape sequences
|
2010-06-04 23:29:49 +05:30
|
|
|
|
2017-04-12 20:47:29 +05:30
|
|
|
//applet:IF_CAT(APPLET(cat, BB_DIR_BIN, BB_SUID_DROP))
|
2016-11-23 19:16:56 +05:30
|
|
|
|
2017-04-05 21:47:17 +05:30
|
|
|
//kbuild:lib-$(CONFIG_CAT) += cat.o
|
2016-11-23 19:16:56 +05:30
|
|
|
|
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/cat.html */
|
|
|
|
|
2017-07-14 13:26:13 +05:30
|
|
|
//usage:#if ENABLE_FEATURE_CATN || ENABLE_FEATURE_CATV
|
|
|
|
//usage:#define cat_trivial_usage
|
|
|
|
//usage: "[-" IF_FEATURE_CATN("nb") IF_FEATURE_CATV("vteA") "] [FILE]..."
|
|
|
|
//usage:#else
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cat_trivial_usage
|
2017-07-14 13:26:13 +05:30
|
|
|
//usage: "[FILE]..."
|
|
|
|
//usage:#endif
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cat_full_usage "\n\n"
|
2017-04-12 20:47:29 +05:30
|
|
|
//usage: "Print FILEs to stdout\n"
|
2017-07-14 13:26:13 +05:30
|
|
|
//usage: IF_FEATURE_CATN(
|
2017-04-05 21:47:17 +05:30
|
|
|
//usage: "\n -n Number output lines"
|
2017-04-12 20:47:29 +05:30
|
|
|
//usage: "\n -b Number nonempty lines"
|
2017-07-14 13:26:13 +05:30
|
|
|
//usage: )
|
2017-04-12 20:47:29 +05:30
|
|
|
//usage: IF_FEATURE_CATV(
|
|
|
|
//usage: "\n -v Show nonprinting characters as ^x or M-x"
|
|
|
|
//usage: "\n -t ...and tabs as ^I"
|
|
|
|
//usage: "\n -e ...and end lines with $"
|
|
|
|
//usage: "\n -A Same as -vte"
|
|
|
|
//usage: )
|
2017-04-05 21:47:17 +05:30
|
|
|
/*
|
|
|
|
Longopts not implemented yet:
|
2017-04-12 20:47:29 +05:30
|
|
|
--number-nonblank number nonempty output lines, overrides -n
|
|
|
|
--number number all output lines
|
|
|
|
--show-nonprinting use ^ and M- notation, except for LFD and TAB
|
|
|
|
--show-all equivalent to -vet
|
2017-04-05 21:47:17 +05:30
|
|
|
Not implemented yet:
|
2017-04-12 20:47:29 +05:30
|
|
|
-E, --show-ends display $ at end of each line (-e sans -v)
|
|
|
|
-T, --show-tabs display TAB characters as ^I (-t sans -v)
|
2017-04-05 21:47:17 +05:30
|
|
|
-s, --squeeze-blank suppress repeated empty output lines
|
|
|
|
*/
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:
|
|
|
|
//usage:#define cat_example_usage
|
|
|
|
//usage: "$ cat /proc/uptime\n"
|
|
|
|
//usage: "110716.72 17.67"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2017-04-12 20:47:29 +05:30
|
|
|
#include "common_bufsiz.h"
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_CATV
|
|
|
|
/*
|
|
|
|
* cat -v implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Rob Landley <rob@landley.net>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
|
|
*/
|
|
|
|
/* Rob had "cat -v" implemented as a separate applet, catv.
|
|
|
|
* See "cat -v considered harmful" at
|
|
|
|
* http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz
|
|
|
|
* From USENIX Summer Conference Proceedings, 1983
|
|
|
|
* """
|
|
|
|
* The talk reviews reasons for UNIX's popularity and shows, using UCB cat
|
|
|
|
* as a primary example, how UNIX has grown fat. cat isn't for printing
|
|
|
|
* files with line numbers, it isn't for compressing multiple blank lines,
|
|
|
|
* it's not for looking at non-printing ASCII characters, it's for
|
|
|
|
* concatenating files.
|
|
|
|
* We are reminded that ls isn't the place for code to break a single column
|
|
|
|
* into multiple ones, and that mailnews shouldn't have its own more
|
|
|
|
* processing or joke encryption code.
|
|
|
|
* """
|
|
|
|
*
|
|
|
|
* I agree with the argument. Unfortunately, this ship has sailed (1983...).
|
|
|
|
* There are dozens of Linux distros and each of them has "cat" which supports -v.
|
|
|
|
* It's unrealistic for us to "reeducate" them to use our, incompatible way
|
2017-07-14 13:26:13 +05:30
|
|
|
* to achieve "cat -v" effect. The actual effect would be "users pissed off
|
2017-04-12 20:47:29 +05:30
|
|
|
* by gratuitous incompatibility".
|
|
|
|
*/
|
2017-07-14 14:17:18 +05:30
|
|
|
#define CAT_OPT_e (1<<0)
|
|
|
|
#define CAT_OPT_t (1<<1)
|
|
|
|
#define CAT_OPT_v (1<<2)
|
|
|
|
/* -A occupies bit (1<<3) */
|
|
|
|
#define CAT_OPT_n ((1<<4) * ENABLE_FEATURE_CATN)
|
|
|
|
#define CAT_OPT_b ((1<<5) * ENABLE_FEATURE_CATN)
|
2017-04-12 20:47:29 +05:30
|
|
|
static int catv(unsigned opts, char **argv)
|
|
|
|
{
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
int fd;
|
2017-07-14 14:17:18 +05:30
|
|
|
#if ENABLE_FEATURE_CATN
|
2018-04-29 17:35:43 +05:30
|
|
|
bool eol_seen = (opts & (CAT_OPT_n|CAT_OPT_b));
|
|
|
|
unsigned eol_char = (eol_seen ? '\n' : 0x100);
|
2017-07-14 14:17:18 +05:30
|
|
|
unsigned skip_num_on = (opts & CAT_OPT_b) ? '\n' : 0x100;
|
2018-04-29 17:35:43 +05:30
|
|
|
unsigned lineno = 0;
|
2017-07-14 14:17:18 +05:30
|
|
|
#endif
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2017-07-14 14:17:18 +05:30
|
|
|
BUILD_BUG_ON(CAT_OPT_e != VISIBLE_ENDLINE);
|
|
|
|
BUILD_BUG_ON(CAT_OPT_t != VISIBLE_SHOW_TABS);
|
2017-04-12 20:47:29 +05:30
|
|
|
#if 0 /* These consts match, we can just pass "opts" to visible() */
|
2017-07-14 14:17:18 +05:30
|
|
|
if (opts & CAT_OPT_e)
|
2017-04-12 20:47:29 +05:30
|
|
|
flags |= VISIBLE_ENDLINE;
|
2017-07-14 14:17:18 +05:30
|
|
|
if (opts & CAT_OPT_t)
|
2017-04-12 20:47:29 +05:30
|
|
|
flags |= VISIBLE_SHOW_TABS;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define read_buf bb_common_bufsiz1
|
|
|
|
setup_common_bufsiz();
|
|
|
|
do {
|
|
|
|
fd = open_or_warn_stdin(*argv);
|
|
|
|
if (fd < 0) {
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
int i, res;
|
|
|
|
|
|
|
|
res = read(fd, read_buf, COMMON_BUFSIZE);
|
|
|
|
if (res < 0)
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
if (res <= 0)
|
|
|
|
break;
|
|
|
|
for (i = 0; i < res; i++) {
|
|
|
|
unsigned char c = read_buf[i];
|
|
|
|
char buf[sizeof("M-^c")];
|
2017-07-14 14:17:18 +05:30
|
|
|
#if ENABLE_FEATURE_CATN
|
|
|
|
if (eol_seen && c != skip_num_on)
|
|
|
|
printf("%6u ", ++lineno);
|
|
|
|
eol_seen = (c == eol_char);
|
|
|
|
#endif
|
2017-04-12 20:47:29 +05:30
|
|
|
visible(c, buf, opts);
|
2021-02-04 01:17:14 +05:30
|
|
|
fputs_stdout(buf);
|
2017-04-12 20:47:29 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && fd)
|
|
|
|
close(fd);
|
|
|
|
} while (*++argv);
|
|
|
|
|
|
|
|
fflush_stdout_and_exit(retval);
|
|
|
|
}
|
2017-07-14 14:17:18 +05:30
|
|
|
#undef CAT_OPT_n
|
|
|
|
#undef CAT_OPT_b
|
2017-04-12 20:47:29 +05:30
|
|
|
#endif
|
2007-04-10 21:13:37 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int cat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int cat_main(int argc UNUSED_PARAM, char **argv)
|
2006-12-21 18:53:14 +05:30
|
|
|
{
|
2017-12-31 22:00:02 +05:30
|
|
|
#if ENABLE_FEATURE_CATV || ENABLE_FEATURE_CATN
|
2017-04-12 20:47:29 +05:30
|
|
|
unsigned opts;
|
2017-04-05 21:47:17 +05:30
|
|
|
|
2017-12-31 22:00:02 +05:30
|
|
|
opts =
|
|
|
|
#endif
|
|
|
|
getopt32(argv, IF_FEATURE_CATV("^")
|
2017-08-09 01:25:02 +05:30
|
|
|
/* -u is ignored ("unbuffered") */
|
|
|
|
IF_FEATURE_CATV("etvA")IF_FEATURE_CATN("nb")"u"
|
|
|
|
IF_FEATURE_CATV("\0" "Aetv" /* -A == -vet */)
|
|
|
|
);
|
2006-12-21 18:53:14 +05:30
|
|
|
argv += optind;
|
2017-04-12 20:47:29 +05:30
|
|
|
|
2017-07-14 14:17:18 +05:30
|
|
|
/* Read from stdin if there's nothing else to do. */
|
|
|
|
if (!argv[0])
|
|
|
|
*--argv = (char*)"-";
|
|
|
|
|
2017-04-12 20:47:29 +05:30
|
|
|
#if ENABLE_FEATURE_CATV
|
|
|
|
if (opts & 7)
|
|
|
|
return catv(opts, argv);
|
|
|
|
opts >>= 4;
|
|
|
|
#endif
|
|
|
|
|
2017-07-14 13:26:13 +05:30
|
|
|
#if ENABLE_FEATURE_CATN
|
|
|
|
# define CAT_OPT_n (1<<0)
|
|
|
|
# define CAT_OPT_b (1<<1)
|
|
|
|
if (opts & (CAT_OPT_n|CAT_OPT_b)) { /* -n or -b */
|
2017-07-14 14:17:18 +05:30
|
|
|
struct number_state ns;
|
2018-11-29 16:14:10 +05:30
|
|
|
int exitcode;
|
2017-07-14 14:17:18 +05:30
|
|
|
|
2017-07-14 13:26:13 +05:30
|
|
|
ns.width = 6;
|
|
|
|
ns.start = 1;
|
|
|
|
ns.inc = 1;
|
|
|
|
ns.sep = "\t";
|
2021-01-21 14:10:54 +05:30
|
|
|
ns.empty_str = NULL;
|
2017-07-14 13:26:13 +05:30
|
|
|
ns.all = !(opts & CAT_OPT_b); /* -n without -b */
|
|
|
|
ns.nonempty = (opts & CAT_OPT_b); /* -b (with or without -n) */
|
2018-11-29 16:14:10 +05:30
|
|
|
exitcode = EXIT_SUCCESS;
|
2017-07-14 13:26:13 +05:30
|
|
|
do {
|
2018-11-29 16:14:10 +05:30
|
|
|
exitcode |= print_numbered_lines(&ns, *argv);
|
2017-07-14 13:26:13 +05:30
|
|
|
} while (*++argv);
|
2018-11-29 16:14:10 +05:30
|
|
|
fflush_stdout_and_exit(exitcode);
|
2017-07-14 13:26:13 +05:30
|
|
|
}
|
|
|
|
/*opts >>= 2;*/
|
|
|
|
#endif
|
2017-04-05 21:47:17 +05:30
|
|
|
|
2017-07-14 13:26:13 +05:30
|
|
|
return bb_cat(argv);
|
2006-12-21 18:53:14 +05:30
|
|
|
}
|