如何搜索特定日期修改的文件?
答案1
算出这是多少天前的事了,无需登录即可使用它-mtime
。
答案2
touch --date "2010-11-01" /tmp/foo(some temp file which is not important)
touch --date "2010-11-02" /tmp/foo2(some temp file which is not important)
find /some_folder -newer /tmp/foo ! -newer /tmp/foo2
这将为您提供 some_folder 中修改日期晚于或与“2010-11-01”相同的文件,并且不晚于“2010-11-02”。