I need to quickly search my entire filesystem for a string. Is there a program that will index my disk and allow me to do this? I've tried tracker and google desktop, but they don't seem to allow me to recursively index root (/).
feedback
|
|
Do you need to quickly search your filesystem for a string just once? Or is this something you need to do all the time? Because if it's just once, you might as well just use If this is actually something you find yourself doing regularly, then you'll find a number of full-text indexing tools out there, including swish-e, Lucene, Sphinx, and others. | |||
|
feedback
|
|
find / -type f -exec grep PATTERN {} \; If this is a workstation, you might want to look into Beagle[0] or whatever it is that has since replaced Beagle. | |||
|
feedback
|
|
You may find | |||
|
feedback
|