1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-10 17:31:56 +02:00

doc: paste: give a CSV generation example

* doc/coreutils.texi (paste invocation): Provide an example
to comma separate data.
This commit is contained in:
Pádraig Brady
2026-01-15 15:22:49 +00:00
parent a0119d5982
commit 36d6cb2774

View File

@@ -6269,6 +6269,12 @@ $ seq 4 | paste -d ' ' - -
3 4
@end example
Comma separate data:
@example
$ seq 4 | paste -s -d ','
1,2,3,4
@end example
The program accepts the following options. Also see @ref{Common options}.
@table @samp