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

Linux

6358 readers
183 users here now

A community for everything relating to the GNU/Linux operating system

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 2 days ago (3 children)

I always just use

find | grep -i <partial file name>
[–] Jumuta@sh.itjust.works 5 points 2 days ago

just use fd at that point

find <dir> -iname partialfilename\*

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

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

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

[–] Tja@programming.dev 5 points 1 day 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.