Hello, On 08/08/17 05:31 AM, Phlosioneer wrote: > Looking at the official coreutils documentation for join: at > https://www.gnu.org/software/coreutils/manual/html_node/join-invocation.html > > The result of the example is incorrect. > It should read: > > $ join file1 file2 > a 1 X > e 5 Y
Thank you for the report. The attached patch should fix it. I'll push it soon if there are no objections. regards, - assaf
>From 40988dd16111f72413d18d8bff296087bcfa3b8c Mon Sep 17 00:00:00 2001 From: Assaf Gordon <[email protected]> Date: Tue, 8 Aug 2017 10:22:32 -0600 Subject: [PATCH] doc: fix join example Reported by Phlosioneer in https://bugs.gnu.org/28014 . * doc/coreutils.texi (join invocation): Fix incorrect output in example. --- doc/coreutils.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 77e993e46..8f1cb4c5f 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -6131,7 +6131,7 @@ f Z $ join file1 file2 a 1 X -e 5 Z +e 5 Y @end group @end example -- 2.11.0
