1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

doc: cut: resintate and expand -d info

* doc/coreutils.texi (cut invocation): Add back the -d description,
and adjust for multi-byte support, and expand on specifying a NUL
delimitier, and detail the behavior when the delimiter matches
the line delimiter.
This commit is contained in:
Pádraig Brady
2026-03-28 09:12:39 +00:00
parent 032ecdee9b
commit c3e819fadc

View File

@@ -6177,6 +6177,17 @@ In other words, do @emph{not} print the bytes, characters or fields
specified via those options. This option is useful when you have
many fields and want to print all but a few of them.
@optItem{cut,-d,@w{ }@var{character}}
@optItemx{cut,--delimiter,=@var{character}}
With @option{-f}, use @var{character} as
the input field separator (default is TAB).
If an empty delimiter @var{character} is specified then the ASCII NUL
character is used to delimit the fields.
Note the delimiter @var{character} can be the same as the
line terminator character, which can be used to select ranges of lines.
In this case the last line terminator in the input is not treated
as a field separator, which is significant with the @option{-s} option.
@optItem{cut,-f,@w{ }@var{field-list}}
@optItemx{cut,--fields,=@var{field-list}}
Select for printing only the fields listed in @var{field-list}.