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
|
|
|
|
//config: bool "cat"
|
2010-06-06 07:44:28 +05:30
|
|
|
//config: default y
|
2010-06-04 23:29:49 +05:30
|
|
|
//config: help
|
|
|
|
//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.
|
|
|
|
|
2016-11-23 19:16:56 +05:30
|
|
|
//applet:IF_CAT(APPLET_NOFORK(cat, cat, BB_DIR_BIN, BB_SUID_DROP, cat))
|
|
|
|
|
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 */
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cat_trivial_usage
|
2017-04-05 21:47:17 +05:30
|
|
|
//usage: "[-n] [FILE]..."
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define cat_full_usage "\n\n"
|
|
|
|
//usage: "Concatenate FILEs and print them to stdout"
|
2017-04-05 21:47:17 +05:30
|
|
|
//usage: "\n -n Number output lines"
|
|
|
|
/*
|
|
|
|
Longopts not implemented yet:
|
|
|
|
--number-nonblank number nonempty output lines, overrides -n
|
|
|
|
--number number all output lines
|
|
|
|
Not implemented yet:
|
|
|
|
-A, --show-all equivalent to -vET
|
|
|
|
-e equivalent to -vE
|
|
|
|
-E, --show-ends display $ at end of each line
|
|
|
|
-s, --squeeze-blank suppress repeated empty output lines
|
|
|
|
-t equivalent to -vT
|
|
|
|
-T, --show-tabs display TAB characters as ^I
|
|
|
|
-v, --show-nonprinting use ^ and M- notation, except for LFD and TAB
|
|
|
|
*/
|
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"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
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-04-05 21:47:17 +05:30
|
|
|
struct number_state ns;
|
|
|
|
unsigned opt;
|
|
|
|
|
|
|
|
/* -u is ignored */
|
|
|
|
opt = getopt32(argv, "nbu");
|
2006-12-21 18:53:14 +05:30
|
|
|
argv += optind;
|
2017-04-05 21:47:17 +05:30
|
|
|
if (!(opt & 3)) /* no -n or -b */
|
|
|
|
return bb_cat(argv);
|
|
|
|
|
|
|
|
if (!*argv)
|
|
|
|
*--argv = (char*)"-";
|
|
|
|
ns.width = 6;
|
|
|
|
ns.start = 1;
|
|
|
|
ns.inc = 1;
|
|
|
|
ns.sep = "\t";
|
|
|
|
ns.empty_str = "\n";
|
|
|
|
ns.all = !(opt & 2); /* -n without -b */
|
|
|
|
ns.nonempty = (opt & 2); /* -b (with or without -n) */
|
|
|
|
do {
|
|
|
|
print_numbered_lines(&ns, *argv);
|
|
|
|
} while (*++argv);
|
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS);
|
2006-12-21 18:53:14 +05:30
|
|
|
}
|