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)