Software to search Home and Root directories

ngc4900

Registered
Hi is there a software program for OSX that will let one search the library folders in both the root directory and home directory?
Thanks
Joe
 
The Terminal does a good job of this.

Code:
find /Library ~/Library -type f | grep SEARCHSTRING
...where SEARCHSTRING is the string of text you're looking for.
 
Back
Top