this post was submitted on 08 Mar 2025
66 points (97.1% liked)

Linux

8428 readers
230 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] _thebrain_@sh.itjust.works 2 points 4 months ago (3 children)

I always just use

find | grep -i <partial file name>
[–] NegativeLookBehind@lemmy.world 5 points 4 months ago
find <dir> -iname partialfilename\*

Is pretty much the "find-native" way to do the same thing

[–] Jumuta@sh.itjust.works 5 points 4 months ago

just use fd at that point

[–] FizzyOrange@programming.dev 2 points 4 months ago (1 children)

Well that's clearly worse... Why even make this comment?

[–] Tja@programming.dev 5 points 4 months ago

Because sometimes people want to share solutions that work for them. A clunky solution that you remember is better than the optimal solution you can't access.