无法在 Mac 的 Zsh 中找到文件夹中已存在一分钟的文件
我需要找到在文件夹“废纸篓”中恰好一分钟的文件。 这些文件已在我的计算机上移动到该文件夹中。
我运行以下命令失败,
find -atime n1m .
我通过命令获取了目录中的所有文件,甚至是我刚刚创建的文件。 看来选项 -atime 不正确。
如何找到访问时间为一分钟的文件?
I need to find files which have been in the folder Wastebasket exactly one minute.
The files have been moved all over my computer to the folder.
I run the following unsuccessfully
find -atime n1m .
I get all my files in the directory by the command, even ones which I just created.
It seems that the option -atime is not correct.
How can you find files which access time is one minute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您正在寻找
find -amin 1
n
只是一个用数字替换的变量。+n
例如+1
表示更大n
例如1
表示完全-n
例如-1
表示小于I think you're looking for
find -amin 1
n
is just a variable that you replace with a number.+n
eg+1
means greatern
eg1
means exactly-n
eg-1
means less than删除
n
。 联机帮助页中的n
代表数字。Drop the
n
. Then
in the manpage stands for a number.既然您提到您正在使用 zsh,我不妨建议一个特定于 zsh 的答案。 要查找访问时间为一分钟或更短时间的所有文件,可以使用以下命令:
Since you've mentioned you're using zsh, I might as well suggest a zsh-specific answer. To find all files with access time of minute or less ago, you can use the command: