Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,

the following of which (from cat.c) belongs in svn history instead of the
source code:

/* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
 *
 * This is a new implementation of 'cat' which aims to be SUSv3 compliant.
 *
 * Changes from the previous implementation include:
 * 1) Multiple '-' args are accepted as required by SUSv3.  The previous
 *    implementation would close stdin and segfault on a subsequent '-'.
 * 2) The '-u' options is required by SUSv3.  Note that the specified
 *    behavior for '-u' is done by default, so all we need do is accept
 *    the option.
 */
This commit is contained in:
Rob Landley
2006-05-31 19:36:04 +00:00
parent 9a5686b605
commit 8abbee474c
6 changed files with 82 additions and 29 deletions

View File

@@ -25,6 +25,12 @@ config CONFIG_CAT
help
cat is used to concatenate files and print them to the standard
output. Enable this option if you wish to enable the 'cat' utility.
config CONFIG_CATV
bool "catv"
default n
help
Display nonprinting characters as escape sequences (like some
implementations' cat -v option).
config CONFIG_FEATURE_CAT_ESCAPE
bool "support -vetET"