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'
r
stands for recursionn
displays the line numberw
matches the whole word
Refer to man find
pages for more info.