Forums
linux: delete the files older than 10 days - Printable Version

+- Forums (https://zhtw.com/f)
+-- Forum: 分類 (https://zhtw.com/f/forumdisplay.php?fid=1)
+--- Forum: 程式語言 Programming language (https://zhtw.com/f/forumdisplay.php?fid=9)
+--- Thread: linux: delete the files older than 10 days (/showthread.php?tid=30)



linux: delete the files older than 10 days - admin - 2025-05-29

碼:
find /var/www/fubon/rawdata -ctime +10 -type f -delete
create time

碼:
find /var/www/fubon/data_oneday.proc/*.txt -mtime +7 -type f | xargs rm
modify time