# HG changeset patch # User Rob Landley # Date 1164488815 18000 # Node ID f2c7f0799ebe548c290d04c817454bbc343f802d # Parent c1f4f9101af74e9baa0466aaf9f1cdc979e37c86 Add cat -v. diff -r c1f4f9101af7 -r f2c7f0799ebe lib/lib.h --- a/lib/lib.h Sat Nov 25 13:48:02 2006 -0500 +++ b/lib/lib.h Sat Nov 25 16:06:55 2006 -0500 @@ -4,6 +4,9 @@ * Copyright 2006 Rob Landley */ +// libc generally has this, but the headers are screwed up +ssize_t getline(char **lineptr, size_t *n, FILE *stream); + // llist.c void llist_free(void *list, void (*freeit)(void *data)); void *llist_pop(void *list); // actually void **list, but the compiler's dumb diff -r c1f4f9101af7 -r f2c7f0799ebe toys.h --- a/toys.h Sat Nov 25 13:48:02 2006 -0500 +++ b/toys.h Sat Nov 25 16:06:55 2006 -0500 @@ -45,4 +45,4 @@ // One big temporary buffer, for use by applets (not library functions). -char buf[4096]; +char toybuf[4096]; diff -r c1f4f9101af7 -r f2c7f0799ebe toys/Config.in --- a/toys/Config.in Sat Nov 25 13:48:02 2006 -0500 +++ b/toys/Config.in Sat Nov 25 16:06:55 2006 -0500 @@ -1,5 +1,18 @@ menu "Toys" +config CATV + bool "catv" + default n + help + usage: catv [-evt] [filename...] + + Display nonprinting characters as escape sequences. Use M-x for + high ascii characters (>127), and ^x for other nonprinting chars. + + -e Mark each newline with $ + -t Show tabs as ^I + -v Don't use ^x or M-x escapes. + config DF bool "df (disk free)" default n diff -r c1f4f9101af7 -r f2c7f0799ebe toys/catv.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toys/catv.c Sat Nov 25 16:06:55 2006 -0500 @@ -0,0 +1,60 @@ +/* vi: set sw=4 ts=4: */ +/* + * cat -v implementation for toybox + * + * Copyright (C) 2006 Rob Landley + */ + +/* See "Cat -v considered harmful" at + * http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz */ + +#include "toys.h" + +int catv_main(void) +{ + int retval = 0, fd; + char **argv = toys.optargs; + + toys.optflags^=4; + + // Loop through files. + + do { + // Read from stdin if there's nothing else to do. + + fd = 0; + if (*argv && 0>(fd = xopen(*argv, O_RDONLY, 0))) retval = EXIT_FAILURE; + else for(;;) { + int i, res; + + res = reread(fd, toybuf, sizeof(toybuf)); + if (res < 0) retval = EXIT_FAILURE; + if (res < 1) break; + for (i=0; i 126 && (toys.optflags & 4)) { + if (c == 127) { + printf("^?"); + continue; + } else { + printf("M-"); + c -= 128; + } + } + if (c < 32) { + if (c == 10) { + if (toys.optflags & 1) putchar('$'); + } else if (toys.optflags & (c==9 ? 2 : 4)) { + printf("^%c", c+'@'); + continue; + } + } + putchar(c); + } + } + if (CFG_TOYS_FREE && fd) close(fd); + } while (*++argv); + + return retval; +} diff -r c1f4f9101af7 -r f2c7f0799ebe toys/toylist.h --- a/toys/toylist.h Sat Nov 25 13:48:02 2006 -0500 +++ b/toys/toylist.h Sat Nov 25 16:06:55 2006 -0500 @@ -53,6 +53,7 @@ // The rest of these are alphabetical, for binary search. +USE_CATV(NEWTOY(catv, "vte", TOYFLAG_NOFORK|TOYFLAG_USR|TOYFLAG_BIN)) USE_TOYSH(NEWTOY(cd, NULL, TOYFLAG_NOFORK)) USE_DF(NEWTOY(df, "Pkt*a", TOYFLAG_USR|TOYFLAG_SBIN)) USE_TOYSH(NEWTOY(exit, NULL, TOYFLAG_NOFORK))