如何列出一个目录中最后更改的文件
如果有人黑了一个网站,那么我想检查一下 htdocs 目录中哪些文件在过去 24 小时内可能发生了更改,这意味着子目录中的文件也形成了 htdocs。如何做到这一点?
我很乐意提供任何建议,
干杯 尼克
if anyone hacks a site, then I would like to check which files are changed maybe in the last 24 hours in the directory htdocs, that means the files in the subdirectories form htdocs too. How to do this?
I will be happy for any suggestions,
Cheers
Nik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将查找过去 24 小时内(-1 = 1 天)修改的文件
如果您使用 zsh,则你可以这样做:
显示过去 24 小时内修改的文件(你可以为分钟/小时等指定不同的参数,以及是否要修改/访问等)
will find files modified in the last 24 hours (-1 = 1 day)
If you're using zsh, then you can do:
which shows you files modified in the last 24 hours (you can specify different params for minutes/hours etc. and whether you want modified/accessed etc.)