One method of performing a recursive grep is:
find . –type f –print | xargs grep “Item to search for here”
On the boxes that I admin I put this into a little shell script that I call rgrep, so that I can feed my search value in without needed to retype this line everytime I want to perform a recursive grep.
|