shell指令碼刪除N天前的檔案夾-----附linux和mac上date命令的不同

來源:互聯網
上載者:User

shell指令碼刪除N天前的檔案夾-----附linux和mac上date命令的不同

背景:
每日構建的東西,按日期放到不同的檔案夾裡。如今天的構建放到2015-06-01裡,明天的就放到2015-06-02裡,依次類推。時間久了,需要一個指令碼刪除N天前的檔案夾。(本例中N=7,即刪除一周前的構建)。
下面直接上代碼,linux版:

#! /bin/bashhistoryDir=~/test/today=$(date +%Y-%m-%d)echo "---------today is $today-----------"tt=`date -d last-week +%Y-%m-%d`echo "next is to delete release before $tt"tt1=`date -d $tt +%s`  #小於此數值的檔案夾刪掉#echo $tt1 for file in ${historyDir}*do    if test -d $file        then        name=`basename $file`        #echo $name        curr=`date -d $name +%s`        if [ $curr -le $tt1 ]            then                echo " delete $name-------"                rm -rf ${historyDir}${name}        fi    fidone

注意事項:
1,historyDir=~/test/後面一定要帶/,否則在後面的遍曆檔案夾時for file in ${historyDir}*會對應不上。

2,在linux下通過today=$(date +%Y-%m-%d)獲得格式為2015-06-01類型的日期,通過

tt1=`date -d $tt +%s`

得到整形的時間戳記。當然也可以在獲得時間的時候就用$(date +%s)這樣直接得到的就是時間戳記,不用再轉換了,但是日期是預設的年月日小時分秒的格式轉換的時間戳記。
PS:MAC下不行。

3,linux裡通過date -d last-week +%Y-%m-%d來獲得一周前的日期。
PS:MAC下沒行。
4,通過 if test -d $file來判斷檔案夾是否存在,-f是判斷檔案是否存在。

name=`basename $file`

這句話獲得檔案夾的名字,之後是將名字(也就是日期)轉為時間戳記比較。

MAC上的代碼
#! /bin/bashhistoryDir=~/test/today=$(date +%Y-%m-%d)echo "---------today is $today-----------"today1=`date -j -f %Y-%m-%d $today +%s`#echo "today1=$today1"#求一周前的時間tt=$(date -v -7d +%Y-%m-%d)echo "next is to delete release before $tt"tt1=`date -j -f %Y-%m-%d $tt +%s` #linux上可以這樣`date -d $tt +%s` #小於此數值的檔案夾刪掉#echo $tt1 for file in ${historyDir}*do if test -d $file then name=`basename $file` echo $name curr=`date -j -f %Y-%m-%d $name +%s` if [ $curr -le $tt1 ] then echo " delete $name" rm -rf ${historyDir}${name} fi fidoneecho "--------------end---------------"

跟linux上不同之處有二:

1,將字串的時間轉為整數的時間戳記時,mac上要這樣:

today1=`date -j -f %Y-%m-%d $today +%s`


2,獲得7天之前的日期mac上要這樣:

tt=$(date -v -7d +%Y-%m-%d)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.