Most of us know that to search for a string in a given file
grep "<string>" file		works and
to search for a string in all files in an entire directory
grep "<string>" *		works
but suppose you have a whole set of directories you wish to search through
where you search for the string in multiple directories
/-
        /foo
                /foo1	/foo2	/foo3	/foo4
                 file1	file2	 file3	file4
                 <string> <string> <string> <string>
TIA for your help in providing the proper syntax for this search.
Mark
Received on Sun Mar 22 1998 - 14:46:42 NZST