2006-06-01 01:06:04 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* cat -v implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Rob Landley <rob@landley.net>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-06-01 01:06:04 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
/* See "Cat -v considered harmful" at
|
|
|
|
* http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz */
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define catv_trivial_usage
|
|
|
|
//usage: "[-etv] [FILE]..."
|
|
|
|
//usage:#define catv_full_usage "\n\n"
|
|
|
|
//usage: "Display nonprinting characters as ^x or M-x\n"
|
|
|
|
//usage: "\n -e End each line with $"
|
|
|
|
//usage: "\n -t Show tabs as ^I"
|
|
|
|
//usage: "\n -v Don't use ^x or M-x escapes"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2016-04-21 19:56:30 +05:30
|
|
|
#include "common_bufsiz.h"
|
2006-06-01 01:06:04 +05:30
|
|
|
|
2006-08-29 05:01:54 +05:30
|
|
|
#define CATV_OPT_e (1<<0)
|
|
|
|
#define CATV_OPT_t (1<<1)
|
|
|
|
#define CATV_OPT_v (1<<2)
|
2014-02-03 07:57:53 +05:30
|
|
|
struct BUG_const_mismatch {
|
|
|
|
char BUG_const_mismatch[
|
2013-07-30 15:11:58 +05:30
|
|
|
CATV_OPT_e == VISIBLE_ENDLINE && CATV_OPT_t == VISIBLE_SHOW_TABS
|
|
|
|
? 1 : -1
|
|
|
|
];
|
2014-02-03 07:57:53 +05:30
|
|
|
};
|
2013-07-30 15:11:58 +05:30
|
|
|
|
2014-02-03 07:57:53 +05:30
|
|
|
int catv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
|
|
int catv_main(int argc UNUSED_PARAM, char **argv)
|
|
|
|
{
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
int fd;
|
|
|
|
unsigned opts;
|
2013-07-30 15:11:58 +05:30
|
|
|
opts = getopt32(argv, "etv");
|
2006-06-01 01:06:04 +05:30
|
|
|
argv += optind;
|
2013-07-30 15:11:58 +05:30
|
|
|
#if 0 /* These consts match, we can just pass "opts" to visible() */
|
2013-07-30 09:59:42 +05:30
|
|
|
if (opts & CATV_OPT_e)
|
|
|
|
flags |= VISIBLE_ENDLINE;
|
|
|
|
if (opts & CATV_OPT_t)
|
|
|
|
flags |= VISIBLE_SHOW_TABS;
|
2013-07-30 15:11:58 +05:30
|
|
|
#endif
|
2007-06-12 13:43:34 +05:30
|
|
|
|
|
|
|
/* Read from stdin if there's nothing else to do. */
|
2008-03-17 14:37:36 +05:30
|
|
|
if (!argv[0])
|
|
|
|
*--argv = (char*)"-";
|
2016-04-21 22:08:51 +05:30
|
|
|
|
|
|
|
#define read_buf bb_common_bufsiz1
|
|
|
|
setup_common_bufsiz();
|
2006-06-01 01:06:04 +05:30
|
|
|
do {
|
2008-03-17 14:37:36 +05:30
|
|
|
fd = open_or_warn_stdin(*argv);
|
2007-06-12 13:43:34 +05:30
|
|
|
if (fd < 0) {
|
2006-08-29 05:01:54 +05:30
|
|
|
retval = EXIT_FAILURE;
|
2007-06-12 13:43:34 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (;;) {
|
2006-06-01 01:06:04 +05:30
|
|
|
int i, res;
|
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
res = read(fd, read_buf, COMMON_BUFSIZE);
|
2006-08-29 05:01:54 +05:30
|
|
|
if (res < 0)
|
|
|
|
retval = EXIT_FAILURE;
|
2013-07-30 09:59:42 +05:30
|
|
|
if (res <= 0)
|
2006-08-29 05:01:54 +05:30
|
|
|
break;
|
|
|
|
for (i = 0; i < res; i++) {
|
2007-08-06 17:58:24 +05:30
|
|
|
unsigned char c = read_buf[i];
|
2013-07-30 09:59:42 +05:30
|
|
|
if (opts & CATV_OPT_v) {
|
|
|
|
putchar(c);
|
|
|
|
} else {
|
|
|
|
char buf[sizeof("M-^c")];
|
2013-07-30 15:11:58 +05:30
|
|
|
visible(c, buf, opts);
|
2013-07-30 09:59:42 +05:30
|
|
|
fputs(buf, stdout);
|
2006-06-01 01:06:04 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-08-29 05:01:54 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && fd)
|
|
|
|
close(fd);
|
2006-06-01 01:06:04 +05:30
|
|
|
} while (*++argv);
|
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(retval);
|
2006-06-01 01:06:04 +05:30
|
|
|
}
|