linux下如何查找未修改的文件
我可以使用以下命令找到最近 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
甜蜜,不是吗?
sweet, not?
对于
!
,可能需要在 shell 中转义。With
!
, which may need escaping in your shell.