find /home/wwwroot -type f -mtime +30 -exec rm -f {} \;
说明:/home/wwwroot是查找文件的路径。
-type f是指定文件类型为普通文件。
-mtime +30是指修改时间距离现在30天的文件。
-exec rm -f指执行删除匹配出来的文件并且不提示。
find /home/wwwroot -type f -mtime +30 -exec rm -f {} \;
说明:/home/wwwroot是查找文件的路径。
-type f是指定文件类型为普通文件。
-mtime +30是指修改时间距离现在30天的文件。
-exec rm -f指执行删除匹配出来的文件并且不提示。