127k views
5 votes
The true or false questions.

The command: find . -type f -mtime +10 will search in the current directory and its subdirectories for all regular files that have not been modified in more than 10 minutes.

1 Answer

3 votes

Answer:

False

Step-by-step explanation:

The command find . -type f -mtime +10 will search for all files in the current directory and its subdirectories which have not been modified in more than 10 days.

-type argument specifies the type of entity to be searched which in this case corresponds to f (or file).

-mtime argument specifies the last modified time check for the files in terms of number of days and not number of minutes.

User Okeydoke
by
4.5k points