This helped me a lot whenever I'm in a remote server trying to find a keyword or specific text amongst a bunch of files.
This command will save you a lot of time:
grep -rwn [path] -e 'pattern'
rstands for recursionndisplays the line numberwmatches the whole word
Refer to man find pages for more info.