Multiple choice technology

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

  1. grep plasmodium *

  2. find plasmodium -all

  3. lookup plasmodium *

  4. search plasmodium

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

The grep command searches for patterns within files. 'grep plasmodium *' searches for the string 'plasmodium' in all files in the current directory (the * wildcard expands to all filenames). The other commands (find, lookup, search) are either incorrect syntax or don't exist in standard Unix.