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.
有人可以告诉我在 cron 中输入什么命令行来删除某个目录中超过一定大小的所有文件。谢谢
(我在一个 apache 服务器上......我正在使用 cpanel cron 程序)
尝试使用
find path/to/directory -type f -size +150k
用于以 kb 为单位指定文件大小。如果您前几天需要限制 MB,请150M改用。
150M
当前命令将删除该目录及其子目录中的所有文件,因此您可能希望使用该maxdepth选项删除目录中而不是其子目录中的文件
maxdepth
find path/to/directory -maxdepth 1 -type f -size +150k