UNIX上的命令帮助

时间:2010-12-10 10:03:57

标签: unix

我需要知道我们是否在UNIX上有任何命令: 它为我提供了当前目录

中时间t之后更新的所有文件

4 个答案:

答案 0 :(得分:3)

您可以将findmtime参数一起使用:

find . -maxdepth 1 -mtime -1h30m

答案 1 :(得分:2)

您可以使用find命令。

触摸包含您特定日期的文件,然后将该文件与-newer find参数一起使用。

# To find all files modifed on 10th of Dec:

touch -t 12100000 foo
#        MMDDhhmm

find ./ -type f -maxdepth 1 -newer foo

答案 2 :(得分:1)

使用带有适当参数的find命令。相关信息为here

答案 3 :(得分:1)

#find files by modification time
-------------------------------
find . -mtime 1               # 24 hours
find . -mtime -7              # last 7 days
find . -mtime -7 -type f      # just files
find . -mtime -7 -type d      # just dirs


find with time: this works on mac os x
--------------------------------------
find / -newerct '1 minute ago' -print