From: Jim Meyering Date: Thu, 7 Sep 2000 07:01:11 +0000 (+0000) Subject: Remove obsolete comment block. X-Git-Tag: FILEUTILS-4_0z~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19ee58e09012873e3cba6788069396b48f4c082e;p=thirdparty%2Fcoreutils.git Remove obsolete comment block. --- diff --git a/src/cut.c b/src/cut.c index 2c298ec71e..d8e75a056b 100644 --- a/src/cut.c +++ b/src/cut.c @@ -20,42 +20,7 @@ /* POSIX changes, bug fixes, long-named options, and cleanup by David MacKenzie . - 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