find . -name ‘*.*’ | xargs grep -l ’search term’
UPDATE
The gentlemen who replied below is correct in stating that the command below would be easier.
grep -ril 'search_term' *
find . -name ‘*.*’ | xargs grep -l ’search term’
UPDATE
The gentlemen who replied below is correct in stating that the command below would be easier.
grep -ril 'search_term' *
Wouldn’t it be easier to type “grep -ril “search term�
r = recursive
i = ignore case
l = only list the file name not “file name:matching line�
sorry it should read “grep -ril search_term *�