• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need Unix Help... how can I find out what file changed in the last 5 minutes?

Kenji4861

Banned
My friend showed me a command one time

find . -mtime 1
which showed me all the files that changed in the last 24 hours.

Is there a command that would tell me what changed in the last minute or 5 minutes? Thanks!
 
if you know the directory the file is in, go there and just do 'ls -alt' to get a detailed listing sorted by date/time, and look at the timestamp
 
Back
Top