From 36d6cb2774930fbf037c7ea593acc4cd160f1ded Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Thu, 15 Jan 2026 15:22:49 +0000 Subject: [PATCH] doc: paste: give a CSV generation example * doc/coreutils.texi (paste invocation): Provide an example to comma separate data. --- doc/coreutils.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 64e731f06d..e324b886dd 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -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 -- 2.47.3