> >How would I go about searching for an occurrence of a word > in a folder > >with multiple subdirs, and have it search those subdirs > recursively for > >the word as well? There isn't any '-R' flag or the like for > grep, is there > >(a la cp -R or cmod -R)? > > > Maybe rgrep -r is what you want. find . -name '*' | xargs grep "word"