From 33df48ebe466d8184351a65c82e8477c4e4ef5bb Mon Sep 17 00:00:00 2001 From: sharkdp Date: Fri, 3 Apr 2020 10:07:46 +0200 Subject: [PATCH] Remove claim about unique search results --- CHANGELOG.md | 1 - doc/fd.1 | 4 ++-- src/app.rs | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66f8d42..abdfc79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ * see metadata like permissions, owner, file size, modification times (#491) * see symlink targets (#482) * achieve a deterministic output order (#324, #196, #159) - * avoid duplicate search results when multiple search paths are given (#405) - Add a new `--max-results=` option to limit the number of search results, see #472 and #476 This can be useful to speed up searches in cases where you know that there are only N results. Using this option is also (slightly) faster than piping to `head -n ` where `fd` can only diff --git a/doc/fd.1 b/doc/fd.1 index 5a04b74..bd1b5c2 100644 --- a/doc/fd.1 +++ b/doc/fd.1 @@ -69,8 +69,8 @@ Shows the full path starting from the root as opposed to relative paths. .B \-l, \-\-list\-details Use a detailed listing format like 'ls -l'. This is basically an alias for '--exec-batch ls -l' with some additional 'ls' options. This can be used -to see more metadata, to show symlink targets, to achieve a deterministic -sort order and to avoid duplicate search results when using multiple search paths. +to see more metadata, to show symlink targets and to achieve a deterministic +sort order. .TP .B \-L, \-\-follow By default, fd does not descend into symlinked directories. Using this flag, symbolic links are diff --git a/src/app.rs b/src/app.rs index ef92a30..790420a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -355,8 +355,8 @@ fn usage() -> HashMap<&'static str, Help> { , "Show details like permissions, owner, size and modification time." , "Use a detailed listing format like 'ls -l'. This is basically an alias \ for '--exec-batch ls -l' with some additional 'ls' options. This can be used \ - to see more metadata, to show symlink targets, to achieve a deterministic \ - sort order and to avoid duplicate search results when using multiple search paths."); + to see more metadata, to show symlink targets and to achieve a deterministic \ + sort order."); doc!(h, "path-separator" , "Set the path separator to use when printing file paths." , "Set the path separator to use when printing file paths. The default is the OS-specific \