最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

實(shí)現(xiàn)自動(dòng)清除日期目錄shell腳本實(shí)例代碼

 更新時(shí)間:2017年04月25日 08:54:28   投稿:lqh  
這篇文章主要介紹了實(shí)現(xiàn)自動(dòng)清除日期目錄shell腳本實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下

實(shí)現(xiàn)自動(dòng)清除日期目錄shell腳本實(shí)例代碼

很多時(shí)候備份通常會(huì)使用到基于日期來(lái)創(chuàng)建文件夾,對(duì)于這些日期文件夾下面又有很多子文件夾,對(duì)于這些日期文件整個(gè)移除,通過(guò)find結(jié)合rm或者delete顯得有些力不從心。本文提供一個(gè)簡(jiǎn)單的小腳本,可以嵌入到其他腳本,也可直接調(diào)用,如下文供大家參考。 

1、腳本內(nèi)容

[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  

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

相關(guān)文章

最新評(píng)論

桃园县| 安塞县| 五大连池市| 常山县| 射阳县| 芮城县| 邹城市| 汾西县| 丽水市| 蒲江县| 滦南县| 台州市| 鄂托克旗| 简阳市| 西和县| 商都县| 德兴市| 惠东县| 永兴县| 碌曲县| 聂荣县| 永德县| 和田县| 延安市| 华安县| 盖州市| 铁力市| 富裕县| 宜兰县| 思茅市| 陈巴尔虎旗| 东乡县| 鄂托克前旗| 牙克石市| 东乡族自治县| 大渡口区| 湘乡市| 昌邑市| 肃南| 佛教| 沂水县|