command to find a string inside a file.
B
Correct answer
Explanation
The 'grep' command searches for patterns (strings) within files. It's the standard Unix text search utility. 'find' locates files by name/attributes, not content. There is no standard 'search' command. Grep uses regular expressions for pattern matching.