下面的程序是将日期20前的目录备份走,每隔一周用crontab调用一次本脚本。crontab脚本略。
#!/bin/bash
#date1是要移动的起始日期,date2是要移动的结束日期
date1=$(date -d ‘-27 day‘ +%Y%m%d)
date2=$(date -d ‘-20 day‘ +%Y%m%d)
#now time
echo $date1
echo $date2
current_format=`date --date=‘0 days ago‘ +%Y%m%d` #当前8位日期
current=`date --date="$current_format" +%s`
date1Second=`date -d "-0 day $date1" +%s`
date2Second=`date -d "-0 day $date2" +%s`
diff=$((($date2Second-$date1Second)/3600/24))
diff2=$((($current-$date2Second)/3600/24))
for ((i=0;i<=$diff;i++))
do
days=$(( $diff + $diff2 -i ))
currentday=`date --date="$days days ago" +%Y%m%d`
mv $currentday /data/filebak
echo "mv $currentday complete"
done
时间设置,因为date2-date1不能直接算出差的天数,所以先都换成秒,然后相减后再换成天。中间之所以要用当前日期current,是作为一个参照系,是相对于哪天的20天以前。