https://bugs.kde.org/show_bug.cgi?id=521587

--- Comment #6 from [email protected] ---
(In reply to hyperspeed1313 from comment #5)
> Can't guarantee it but I'm pretty sure all my symlinks in my home folder
> *stay* in my home folder at the target. There's literally thousands of them
> thanks to Flatpaks and Steam... (yes, I know that I'm not the one you
> asked).
After some time in company of the "man" command...

I assume you are doing a filename search. You can compare the results of:
    cd ...whereever...
    find . -name "*whatever*"
which supposedly does not follow symlinks, with:
    find -L . -name "*whatever*"
which *does* follow symlinks. You'd check whether this latter "find" gives you
the same as Dolphin...

For content searches, you'd compare
    grep -r whatever
with
    grep -R whatever
the "-R" is a recursive search following symlinks.

> ... But also, if it followed a symlink to find the files, shouldn't it
> return the path of the symlink it followed and not look like the search went
> out of scope in the first place? ...
That's a good point. I think the Simple Search shows the actual, target
filename, it makes sure that if there are several links to the file it only
shows you the one match. YMMV on this though...

> ... yes, I know that I'm not the one you asked ...
It was a general quesion, anyone could answer :-)

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to