计算1970到今天的天数的shell脚本
Oct072008
作者:u2 发布:2008-10-07 23:07 分类:shell 计算1970到今天的天数的shell脚本已关闭评论
#!/bin/bash
#得到1970年到今天的累计天数
get_day()
{
Begin_Year=1970
TO_Year=`date +%Y`
L=`expr $TO_Year – $Begin_Year`
To_Mon=`date +m%d`
To_day=`date +%j`
nu=1
all_day=0
while [ $nu -le $L ]
do
Y=`expr $Begin_Year + $nu`
is_runnian=`expr $Y \% 4`
if [ $is_runnian -eq 0 ]
then
day_nu=366
else
day_nu=365
fi
nu=`expr $nu + 1`
all_day=`expr $all_day + $day_nu`
done
echo `expr $To_day + $all_day`
}
本文固定链接: https://www.2hei.net/2008/10/07/exec_1970_to_today_shell/ | 2hei.net
最活跃的读者