2006-05-31 19:36:04 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* cat -v implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Rob Landley <rob@landley.net>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* See "Cat -v considered harmful" at
|
|
|
|
* http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz */
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2006-05-31 19:36:04 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int catv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-05-31 19:36:04 +00:00
|
|
|
int catv_main(int argc, char **argv)
|
|
|
|
{
|
2007-08-06 12:28:24 +00:00
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
int fd;
|
2006-10-08 17:54:47 +00:00
|
|
|
unsigned flags;
|
2006-05-31 19:36:04 +00:00
|
|
|
|
2007-08-18 15:32:12 +00:00
|
|
|
flags = getopt32(argv, "etv");
|
2006-08-28 23:31:54 +00:00
|
|
|
#define CATV_OPT_e (1<<0)
|
|
|
|
#define CATV_OPT_t (1<<1)
|
|
|
|
#define CATV_OPT_v (1<<2)
|
|
|
|
flags ^= CATV_OPT_v;
|
2006-05-31 19:36:04 +00:00
|
|
|
argv += optind;
|
2007-06-12 08:13:34 +00:00
|
|
|
|
|
|
|
/* Read from stdin if there's nothing else to do. */
|
|
|
|
fd = 0;
|
2007-08-06 12:28:24 +00:00
|
|
|
if (!argv[0]) {
|
|
|
|
argv--;
|
2007-06-12 08:13:34 +00:00
|
|
|
goto jump_in;
|
2007-08-06 12:28:24 +00:00
|
|
|
}
|
2006-05-31 19:36:04 +00:00
|
|
|
do {
|
2007-06-12 08:13:34 +00:00
|
|
|
fd = open_or_warn(*argv, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2006-08-28 23:31:54 +00:00
|
|
|
retval = EXIT_FAILURE;
|
2007-06-12 08:13:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
jump_in:
|
|
|
|
for (;;) {
|
2006-05-31 19:36:04 +00:00
|
|
|
int i, res;
|
|
|
|
|
2007-06-04 10:16:52 +00:00
|
|
|
#define read_buf bb_common_bufsiz1
|
|
|
|
res = read(fd, read_buf, COMMON_BUFSIZE);
|
2006-08-28 23:31:54 +00:00
|
|
|
if (res < 0)
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
if (res < 1)
|
|
|
|
break;
|
|
|
|
for (i = 0; i < res; i++) {
|
2007-08-06 12:28:24 +00:00
|
|
|
unsigned char c = read_buf[i];
|
2006-05-31 19:36:04 +00:00
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
if (c > 126 && (flags & CATV_OPT_v)) {
|
2006-05-31 19:36:04 +00:00
|
|
|
if (c == 127) {
|
2006-10-26 23:21:47 +00:00
|
|
|
printf("^?");
|
2006-05-31 19:36:04 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-06-12 08:13:34 +00:00
|
|
|
printf("M-");
|
|
|
|
c -= 128;
|
2006-05-31 19:36:04 +00:00
|
|
|
}
|
|
|
|
if (c < 32) {
|
|
|
|
if (c == 10) {
|
2006-10-08 17:54:47 +00:00
|
|
|
if (flags & CATV_OPT_e)
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar('$');
|
2006-08-28 23:31:54 +00:00
|
|
|
} else if (flags & (c==9 ? CATV_OPT_t : CATV_OPT_v)) {
|
2006-10-26 23:21:47 +00:00
|
|
|
printf("^%c", c+'@');
|
2006-05-31 19:36:04 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(c);
|
2006-05-31 19:36:04 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-28 23:31:54 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && fd)
|
|
|
|
close(fd);
|
2006-05-31 19:36:04 +00:00
|
|
|
} while (*++argv);
|
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
fflush_stdout_and_exit(retval);
|
2006-05-31 19:36:04 +00:00
|
|
|
}
|