我需要知道我们是否在UNIX上有任何命令: 它为我提供了当前目录
中时间t之后更新的所有文件答案 0 :(得分:3)
您可以将find
与mtime
参数一起使用:
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