Answer:
grep -r
Step-by-step explanation:
Grep command is used in Linux and Mac platforms to search for some words or texts within files on our computer system and print out those texts that match our specified text pattern. It stands for Global Regular Expression Print. In a practical situation, if we wanted to search for a sub directory in a large project that has a lot of files and sub-directories, we can use the –recursive (-r) search option. The grep –r command will search for all files in the current directory and will try to pull out the specified word or text in all of its sub-directories.