From 4f38974aafb5318a236251656ef3425cc61b1217 Mon Sep 17 00:00:00 2001 From: Martin Castillo Date: Wed, 22 May 2019 14:43:10 +0100 Subject: [PATCH] doc: fix typo in sort set operations example * doc/coreutils.texi (sort invocation): Add a missing -u option to uniq. Addresses https://bugs.gnu.org/35849 --- doc/coreutils.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index c8ca44cdda..91f2e6d780 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -6755,7 +6755,7 @@ perform the equivalent of set operations on files: @item @code{sort file1 file2 | uniq -d} @tab Intersection of unsorted files -@item @code{sort file1 file1 file2 | uniq} +@item @code{sort file1 file1 file2 | uniq -u} @tab Difference of unsorted files @item @code{sort file1 file2 | uniq -u} -- 2.47.2