linux下如何查找未修改的文件

发布于 2024-12-11 20:25:06 字数 124 浏览 0 评论 0原文

我可以使用以下命令找到最近 4 分钟更改的目录中的文件:

find ~ -type f -mmin -4

如何找到最近 X 分钟未更改的文件?

谢谢。

I can find the files in a directory which changed the last 4 minutes with the command:

find ~ -type f -mmin -4

how could I find the files which have not changed the last X minutes?

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

老子叫无熙 2024-12-18 20:25:06
find ~ -type f -mmin +4

甜蜜,不是吗?

find ~ -type f -mmin +4

sweet, not?

牵强ㄟ 2024-12-18 20:25:06

对于 !,可能需要在 shell 中转义。

find ~ -type f \! -mmin -4

With !, which may need escaping in your shell.

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