From: Pádraig Brady
Date: Thu, 15 Jan 2026 15:22:49 +0000 (+0000) Subject: doc: paste: give a CSV generation example X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36d6cb2774930fbf037c7ea593acc4cd160f1ded;p=thirdparty%2Fcoreutils.git doc: paste: give a CSV generation example * doc/coreutils.texi (paste invocation): Provide an example to comma separate data. --- 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