Multiple choice

What would be the meaning of the following UNIX command?

$ find .- mtime - 2 -name *.cpp - print

  1. To find a list of directories starting from name

  2. To find just those files that have been modified in the last two days

  3. To find all the files of .cpp extension in name directory

  4. To find only two *.cpp files in the current directory

  5. To find the names of files in mtime directory

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

This is the correct option as mtime refers to modified time and this command will display the names of *.cpp files in the last two days.