bash中时间相关函数的应用

上篇总结了一些常用的函数,这篇写一个经常会用到的,与时间有关的应用场景:
一个起始时间和结束时间,遍历中间的每一天,用于文件名组成部份。

直接上代码

#!/bin/bash
# iterate day between begindate and enddate
# 

get_seconds_by_date()
{
    if [ "$1" ]; then
        date -d "$1" +%s
    else
        date +%s
    fi
}

get_date_by_seconds()
{
    date -d "1970-01-01 UTC $1 seconds" +%Y%m%d
}

beginsec=$(get_seconds_by_date "$1")
endsec=$(get_seconds_by_date "$2")
curr=$beginsec

while [ $curr -le $endsec ];
do
    get_date_by_seconds "$curr"
    curr=$((curr+24*60*60))
done

测试命令

root@ADT:~# bash test.sh 2017-08-30 2017-09-30
20170830
20170831
20170901
20170902
20170903
20170904
20170905
20170906
20170907
20170908
20170909
20170910
20170911
20170912
20170913
20170914
20170915
20170916
20170917
20170918
20170919
20170920
20170921
20170922
20170923
20170924
20170925
20170926
20170927
20170928
20170929
20170930
#另一个简单的方法
#! /bin/sh
date=`date -d "+0 day $1" +%Y%m%d`
enddate=`date -d "+1 day $2" +%Y%m%d`

echo "------------------------------"
echo "date=$date"
echo "enddate=$enddate"
echo "------------------------------"

while [[ $date < $enddate  ]]
do
        echo $date
        date=`date -d "+1 day $date" +%Y%m%d`

done

执行:./test.sh 2014-06-01 2014-06-06

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...