1、遍历给定时间范围内的日期
#! /bin/bash
start_date=2021.01.01
end_date=2021.01.30
start_sec=`date -d "$start_date" "+%s"`
end_sec=`date -d "$end_date" "+%s"`
for((i=start_sec;i<=end_sec;i+=86400)); do
day=$(date -d "@$i" "+%Y.%m.%d")
echo $day
done
1、遍历给定时间范围内的日期
#! /bin/bash
start_date=2021.01.01
end_date=2021.01.30
start_sec=`date -d "$start_date" "+%s"`
end_sec=`date -d "$end_date" "+%s"`
for((i=start_sec;i<=end_sec;i+=86400)); do
day=$(date -d "@$i" "+%Y.%m.%d")
echo $day
done
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。