ngc4900 Registered Nov 24, 2010 #1 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
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
ElDiabloConCaca U.S.D.A. Prime Nov 24, 2010 #2 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.
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.