find / -type f -exec grep -H 'text-to-find-here' {} \;
grep - ilR
:grep -Ril "text-to-find-here" /
i
represents overlook case (discretionary for your situation).R
stands for recursive.l
means "show the document name, not simply the outcome"./
represents beginning at the root of your machine.find/-type f-exec grep -H 'text-to-find-here' {}\;
grep- rnw 'pwd' -e"pattern"