Hey everyone! I used to rely on Agent Ransack (or FileLocator Pro) when I was working on Windows because it was an incredibly powerful tool for searching files. I loved that I could select multiple folders to limit my search, and my favorite feature was the ability to use regular expressions for both file names and file contents. It also allowed me to filter results by both criteria simultaneously. Now that I'm using Fedora with KDE Plasma, I've come across 'kfind', but it doesn't seem to have the same level of flexibility I enjoyed with Agent Ransack. So, I'm wondering what tools you all use for robust file searching in Linux? Thanks in advance!
2 Answers
Have you tried SEARCHMONKEY on Linux? It’s really handy! Also, there's Double Commander (install name: doublecmd). You can use regex for searches just like Agent Ransack. One quirk though: if your regex is looking for 'Belgium', you'd need to specify it carefully to match both cases. But overall, it's pretty solid!
Actually, SEARCHMONKEY can search the content of PDF files too. Just tested it out—super useful!
I’d suggest learning to use `find` in the terminal. It’s incredibly flexible once you get past the initial learning curve. You might also want to check out `locate`, which can be simpler to use than `find`. It’s not exactly a UI, but it’s super powerful!
I appreciate the tip! I really prefer a UI, though. It's nice to have features like saved search history, quick file operations, and the ability to just double-click to open things. The terminal feels limiting for that.

Thanks for sharing! Just a note: in Agent Ransack, the regex handles case sensitivity based on the settings, so it can search for both 'Belgium' and 'belgium'. But cool to know SEARCHMONKEY does regex too!