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.
我想删除创建时间超过 1 天的文件夹中的文件。我怎样才能得到这些文件?
问候
Unix 没有创建时间。你可以试试:
find /path/to/dir -type f -mtime +1 -exec rm {} \;
这将删除超过 1 天前最后修改的所有文件。
如果要查找在最后一天未被访问-atime的文件,请改用该参数。
-atime