Major expressions used with find command to select file is it has been accessed in more than 375 days, is A. #NAME? B. #NAME? C. #NAME? D. #NAME? E. None of the above

#NAME?
#NAME?
#NAME?
#NAME? E. None of the above

The correct answer is: -atime +375.

The -atime option specifies the time since the file was last accessed. The +375 option specifies that the file must have been accessed more than 375 days ago.

The other options are incorrect.

  • -name specifies the name of the file.
  • -mtime specifies the time since the file was last modified.
  • -ctime specifies the time since the file was created.
  • -size specifies the size of the file.

Here is an example of how to use the find command to select files that have been accessed in more than 375 days:

find / -atime +375

This command will find all files in the current directory and all subdirectories that have been accessed in more than 375 days.

Exit mobile version