Home » Questions » Computers [ Ask a new question ]

What's the Bash command recent files?

What's the Bash command recent files?

I want to find all files that are:

Asked by: Guest | Views: 248
Total answers/comments: 1
Guest [Entry]

You probably want either -mtime or -ctime. -atime checks the access time, which includes accessing the file metadata. So doing a ls (or a find -atime) will update the access time. -mtime is the time the file contents were last modified and -ctime is the last time the "status" was changed, which I think is the file metadata (permissions, etc).