65
top 21 comments
sorted by: hot top controversial new old
[-] sudo@programming.dev 2 points 7 hours ago

It literally looks like a clone of fzf or sk complete with prompt and file previews. The fact that ithe article doesn't event reference the prior art is deeply concerning.

[-] wwb4itcgas@lemm.ee 2 points 10 hours ago

Eh, tried it. Doesn't seem to support regex or even wildcard matching, which is... suboptimal. The preview window also often fails to show the content of the current file correctly.

[-] Zykino@programming.dev 3 points 1 day ago

I'm with the others: fd default syntax is easier to remember.

And for the interactive search I'm using skim. With it I cd to the dir I want and Alt t to trigger fuzzy finding. There are also bindings to search for dir or in the history. The neat part is that results are inserted as is in the command line, no need to xargs or copy them. It also make the history look like I always know where the files I want are when in reality they are just fuzzy-found

[-] pglpm@lemmy.ca 8 points 1 day ago

Sounds fantastic, but unfortunately none of the instructions for Debian-based, or the pre-compiled binary, or the building from source worked.

[-] nous@programming.dev 17 points 1 day ago* (last edited 1 day ago)

Also if you are looking for a replacement for find that is not a full tui then take a look at fd which works more like what the author expected from the find commad - fd <pattern>.

[-] sxan@midwest.social 1 points 1 day ago* (last edited 20 hours ago)

~~Plus, IIRC fd does breadth-first search, which leads to faster finds in the most common cases.~~

I've been corrected. fd doesn't do this; other find replacements exist that do, though.

[-] mke@programming.dev 1 points 1 day ago

I don't think so, where did you get that? Last I checked, they weren't interested in adding it. That's why tools like bfs exist.

[-] sxan@midwest.social 1 points 20 hours ago

Oh. I'm just straight up wrong about that; I thought I'd read that about it back when I first started using it regularly.

I'm just attributing it to some other tool. Bad info, sorry!

[-] mke@programming.dev 1 points 12 hours ago

It's cool, thanks for correcting.

[-] notabot@lemm.ee 11 points 1 day ago

find can be a bit slow because it enumerates every directory recursively from the root you specified, but it let's you do a lot more than just search by name. locate is available on most distros and give fast results, albiet from when the index was last rebuilt (usually nightly). They both have the vital property that they output a list of files to stdout for further processing.

[-] ObsidianZed@lemmy.world 4 points 1 day ago

It's worth mentioning you can manually kick off an index build with I believe updatedb (in most cases).

[-] Tja@programming.dev 2 points 1 day ago

+1 for locate and updatedb. It works on macos too.

[-] emb@lemmy.world 3 points 1 day ago

Love reading about the author's struggle with find, it really resonates. I have the same terrible experience every time I try to use it.

[-] _thebrain_@sh.itjust.works 5 points 1 day ago

I always just use

find | grep -i <partial file name>
[-] FizzyOrange@programming.dev 7 points 1 day ago

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

[-] Tja@programming.dev 4 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.

[-] NegativeLookBehind@lemmy.world 5 points 1 day ago
find <dir> -iname partialfilename\*

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

[-] Jumuta@sh.itjust.works 4 points 1 day ago

just use fd at that point

this looks beautiful. find has always driven me a bit batty.

https://github.com/alexpasmantier/television?tab=readme-ov-file

[-] beeng@discuss.tchncs.de 2 points 1 day ago

Looks like I'm gonna give it a whirl

[-] avidamoeba@lemmy.ca 2 points 1 day ago

Why can’t I remember the find parameters?

I don't know. Perhaps write a couple of aliases?

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

Linux

6323 readers
190 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