shell指令碼刪除N天前的資料夾-----附linux和mac上date命令的不同
阿新 • • 發佈:2019-01-08
背景:
每日構建的東西,按日期放到不同的資料夾裡。如今天的構建放到2015-06-01裡,明天的就放到2015-06-02裡,依次類推。時間久了,需要一個指令碼刪除N天前的資料夾。(本例中N=7,即刪除一週前的構建)。
下面直接上程式碼,linux版:
#! /bin/bash
historyDir=~/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
fi
done
注意事項:
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/bash
historyDir=~/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
fi
done
echo "--------------end---------------"
跟linux上不同之處有二:
1,將字串的時間轉為整數的時間戳時,mac上要這樣:
today1=`date -j -f %Y-%m-%d $today +%s`
2,獲得7天之前的日期mac上要這樣:
tt=$(date -v -7d +%Y-%m-%d)
相關連結: