]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove obsolete comment block.
authorJim Meyering <jim@meyering.net>
Thu, 7 Sep 2000 07:01:11 +0000 (07:01 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 7 Sep 2000 07:01:11 +0000 (07:01 +0000)
src/cut.c

index 2c298ec71ed10ba06ac067231fbc7186b643ca13..d8e75a056b3038115ffdcb8b67bced667076e8a5 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
 /* POSIX changes, bug fixes, long-named options, and cleanup
    by David MacKenzie <djm@gnu.ai.mit.edu>.
 
-   Rewrite cut_fields and cut_bytes -- Jim Meyering.
-
-   Options:
-   --bytes=byte-list
-   -b byte-list                        Print only the bytes in positions listed
-                               in BYTE-LIST.
-                               Tabs and backspaces are treated like any
-                               other character; they take up 1 byte.
-
-   --characters=character-list
-   -c character-list           Print only characters in positions listed
-                               in CHARACTER-LIST.
-                               The same as -b for now, but
-                               internationalization will change that.
-                               Tabs and backspaces are treated like any
-                               other character; they take up 1 character.
-
-   --fields=field-list
-   -f field-list               Print only the fields listed in FIELD-LIST.
-                               Fields are separated by a TAB by default.
-
-   --delimiter=delim
-   -d delim                    For -f, fields are separated by the first
-                               character in DELIM instead of TAB.
-
-   -n                          Do not split multibyte chars (no-op for now).
-
-   --only-delimited
-   -s                          For -f, do not print lines that do not contain
-                               the field separator character.
-
-   The BYTE-LIST, CHARACTER-LIST, and FIELD-LIST are one or more numbers
-   or ranges separated by commas.  The first byte, character, and field
-   are numbered 1.
-
-   A FILE of `-' means standard input. */
+   Rewrite cut_fields and cut_bytes -- Jim Meyering.  */
 
 #include <config.h>