gpt4 book ai didi

unix - 如何在unix中查找最近一小时内创建的文件

转载 作者:行者123 更新时间:2023-12-03 04:32:03 24 4
gpt4 key购买 nike

如何在unix中查找最近一小时内创建的文件

最佳答案

如果要搜索的目录是 srch_dir 则要么

$ find srch_dir -cmin -60 # change time 

$ find srch_dir -mmin -60 # modification time 

$ find srch_dir -amin -60 # access time 

显示元数据已更改 (ctime)、文件内容本身已修改 (mtime) 或已访问 (atime) 的文件)分别在最后一小时。

ctime 并不直观,需要进一步解释:

ctime:Unlike mtime, which is only related to the contents inside a file, changed timestamp indicates the last time some metadata of a file was changed. ctime refers to the last time when a file’s metadata.For example, if permission settings of a file were modified, ctime will indicate it.

关于unix - 如何在unix中查找最近一小时内创建的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5242501/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com