Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux刪除指定日期之前的文件

linux刪除指定日期之前的文件

日期:2017/2/7 14:41:06      編輯:Linux教程
 

假如在一個目錄中保留最近30天的文件,30天前的文件自動刪除
  #find /tmp -mtime +30 -type f -name *.sh[ab] -exec rm -f {} \;
  /tmp --設置查找的目錄;
  -mtime +30 --設置時間為30天前;
  -type f --設置查找的類型為文件;
  -name *.sh[ab] --設置文件名稱中包含sha或者shb;
  -exec rm -f --查找完畢後執行刪除操作;
  提示:將此命令寫入crontab後即可自動完成查找並刪除的工作
  另外的方法大同小異
  #find . -mtime +30 -type f | xargs rm -rf

Copyright © Windows教程網 All Rights Reserved