国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > Linux Shell > 正文

實現自動清除日期目錄shell腳本實例代碼

2020-07-27 18:55:24
字體:
來源:轉載
供稿:網友

實現自動清除日期目錄shell腳本實例代碼

很多時候備份通常會使用到基于日期來創建文件夾,對于這些日期文件夾下面又有很多子文件夾,對于這些日期文件整個移除,通過find結合rm或者delete顯得有些力不從心。本文提供一個簡單的小腳本,可以嵌入到其他腳本,也可直接調用,如下文供大家參考。 

1、腳本內容

[root@SZDB ~]# more purge_datedir.sh  #!/bin/bash # Author: Leshami # Blog : http://blog.csdn.net/leshami  RemoveDir=/log/hotbak/physical dt=`date +%Y%m%d -d "3 day ago"`  for subdir in `ls $RemoveDir`; do   if [ "${subdir}" /< "${dt}" ];     then      rm -rf $RemoveDir/$subdir >/dev/null     echo "The directory $RemoveDir/$subdir has been removed."   fi done 

2、演示

[root@SZDB ~]# ls /log/hotbak/physical 20141203 20141210 20141217 20141224 20141231 20150107 20150114 20150125 tmp.sh 20141207 20141214 20141221 20141228 20150104 20150111 20150121 20150128  [root@SZDB ~]# ./purge_datedir.sh  The directory /log/hotbak/physical/20141203 has been removed. The directory /log/hotbak/physical/20141207 has been removed. The directory /log/hotbak/physical/20141210 has been removed. The directory /log/hotbak/physical/20141214 has been removed. The directory /log/hotbak/physical/20141217 has been removed. The directory /log/hotbak/physical/20141221 has been removed. The directory /log/hotbak/physical/20141224 has been removed. The directory /log/hotbak/physical/20141228 has been removed. The directory /log/hotbak/physical/20141231 has been removed. The directory /log/hotbak/physical/20150104 has been removed. The directory /log/hotbak/physical/20150107 has been removed. The directory /log/hotbak/physical/20150111 has been removed. The directory /log/hotbak/physical/20150114 has been removed. The directory /log/hotbak/physical/20150121 has been removed.  [root@SZDB ~]# ls /log/hotbak/physical 20150125 20150128  

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 临夏市| 呈贡县| 廊坊市| 沾化县| 寿宁县| 温州市| 通榆县| 晋州市| 上犹县| 宜兰县| 朝阳县| 晋宁县| 广南县| 山丹县| 普陀区| 五台县| 临西县| 吉木萨尔县| 阿巴嘎旗| 七台河市| 丰宁| 广昌县| 锡林郭勒盟| 宁明县| 都昌县| 博湖县| 凤台县| 威信县| 泰和县| 安庆市| 福鼎市| 余干县| 泰顺县| 张家川| 阿巴嘎旗| 元谋县| 丹东市| 红河县| 车致| 松阳县| 永善县|