Multiple choice technology operating systems

Below command finds all of the files which have been accessed within the last 30 days. find / -type f -time -30

  1. True

  2. False

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

The find command with -time option checks file modification time, not access time. To find files accessed within the last 30 days, you would use -atime (access time) not -time. The -time flag in find actually uses modification time (mtime), while -atime specifically checks when the file was last read or accessed. Therefore the statement as written is False.