Linux - 查找在最后X秒内创建的文件

时间:2014-07-07 07:04:23

标签: linux unix find

可以find用于查找过去5秒内创建的文件吗?

我正在使用如下命令:

$ find /myPath -name "sun*" -type f  -cmin -1

列出了最后一刻创建的文件,但我需要更高的分辨率。

1 个答案:

答案 0 :(得分:3)

GNU find&n;选项-cmin接受实数。由于5秒是0.083分钟,您可以执行以下操作:

$ find /myPath -name "sun*" -type f -cmin -0.083