Sometimes you really need to find a file that has certain text in it, these commands will help provided you have an idea of the directory or the string
grep -R 'final exam' ~/Documents # OR find ~/Documents -type f -exec grep -H 'final exam' {} +
Sometimes you really need to find a file that has certain text in it, these commands will help provided you have an idea of the directory or the string
grep -R 'final exam' ~/Documents # OR find ~/Documents -type f -exec grep -H 'final exam' {} +