Windows Linux 刪除N天之前的檔案指令碼
Windows Linux 刪除N天之前的檔案指令碼
通常做為備份伺服器經常會存放非常多的歷史檔案,而這些檔案又並非需要長期而永久的儲存,只需儲存備份後恢復所需的檔案,這個時候就需要定期刪除過期而無效的備份檔案。
Windows 下刪除方式如下:
forfiles /p d:\OraBackups\prudenwoo /m * /d -7 /c "cmd /c del @file"
forfiles /p d:\OraBackups\prudenwoo /m * /d -7 /c "cmd /c del @file"
Linux 下刪除方式如下
語法如下:
find 對應目錄 -mtime +天數 -name "檔名" -exec rm -rf {} \;
示例:
find /OraBackups/ -mtime +7 -name "*.bak" -exec rm -rf {} \;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-739355/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- shell指令碼之刪除固定天數之前的檔案指令碼
- Windows下批次刪除N天前的檔案Windows
- linux自動刪除N天前檔案Linux
- 刪除七天以前檔案的指令碼指令碼
- Windows bat批處理刪除指定N天前的檔案WindowsBAT
- windows下自動刪除過期檔案的指令碼Windows指令碼
- Linux刪除指定時間之前的檔案Linux
- oracle刪除超過N天資料指令碼的方法Oracle指令碼
- 定期刪除歸檔檔案的指令碼指令碼
- 在WINDOWS下刪除幾天前的檔案Windows
- 定時刪除檔案指令碼指令碼
- 在 Linux 中使用 Bash 指令碼刪除早於 “X” 天的檔案/資料夾Linux指令碼
- windows刪除幾天前檔案的批處理命令Windows
- 【ARCH】留存,Oracle11g之前Dataguard環境刪除歸檔指令碼Oracle指令碼
- 指令碼定期自動刪除ASM下的歸檔檔案指令碼ASM
- linux 下刪除亂碼檔案Linux
- windows 下刪除.svn檔案Windows
- windows.old可以刪除嗎?windows.old檔案的刪除方法Windows
- windows下刪除過期的檔案Windows
- Linux下批量刪除空檔案或者刪除指定大小的檔案Linux
- 一個刪除重做日誌檔案的參考指令碼指令碼
- 【shell 指令碼】刪除 由windows傳入linux含有的 ^M指令碼WindowsLinux
- [Linux] linux 刪除亂碼的檔案&資料夾Linux
- Windows forfiles(刪除歷史檔案)Windows
- 刪除指定資料夾的檔案內容的sh指令碼指令碼
- Linux刪除檔案命令Linux
- Linux批量刪除檔案Linux
- Oracle 11g 自動刪除ASM歸檔檔案指令碼OracleASM指令碼
- 【轉載】Oracle Data Guard 備庫 歸檔檔案 刪除指令碼Oracle指令碼
- windows刪除檔案的批處理操作Windows
- Linux下find與rm指令結合批量刪除檔案Linux
- Linux下刪除昨天的檔案Linux
- linux的刪除檔案命令和強制刪除命令Linux
- Windows 10刪除備份檔案方法Windows
- linux 模糊批量刪除檔案Linux
- Linux下刪除亂碼或特殊字元檔案Linux字元
- 檔案的刪除
- Linux應用總結(1):自動刪除n天前日誌Linux