Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Ubuntu 中获取在某个日期(例如 11.1.2012)更改的所有文件的列表。
find -mtime
几天前工作,但我想要一天的文件,并且想要比数天前更舒服。有什么办法吗?
非常感谢。
你可以使用一个小技巧。使用touch命令创建两个文件,其修改日期包括您要搜索的日期。
例子:
touch -t 201204080000 dummy1 触摸-t 201204082359 dummy2
touch -t 201204080000 dummy1
触摸-t 201204082359 dummy2
那么你可以使用find如下:
查找 /somedir/ ( -newer dummy1 -and !-newer dummy2 )
这应该会很好。