如何列出一个目录中最后更改的文件

发布于 2024-09-17 11:21:52 字数 124 浏览 2 评论 0原文

如果有人黑了一个网站,那么我想检查一下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏九 2024-09-24 11:21:52
find {dir} -mtime -1 -print

将查找过去 24 小时内(-1 = 1 天)修改的文件

如果您使用 zsh,则你可以这样做:

ls **/*(mh-24)

显示过去 24 小时内修改的文件(你可以为分钟/小时等指定不同的参数,以及是否要修改/访问等)

find {dir} -mtime -1 -print

will find files modified in the last 24 hours (-1 = 1 day)

If you're using zsh, then you can do:

ls **/*(mh-24)

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文