Multiple choice technology testing

What is the command to search all files in your current directory for the word "plasmodium" in UNIX?

  1. grep plasmodium *

  2. find plasmodium -all

  3. lookup plasmodium *

  4. cat plasmodium *

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The grep command searches for patterns in files. 'grep plasmodium ' searches all files in the current directory for the text 'plasmodium'. The asterisk () is a wildcard that matches all filenames. Options B, C, and D either use incorrect command syntax or commands that don't perform text search.