时间:2021-05-22
学习shell有一段时间了,一直没有机会练手,看到同事发了一张照片,控制台显示了当月的日历,是用Python实现的,感觉挺好玩,所以准备用shell来实现一个,搞了一下午,终于搞定。
打印本月的日期
#! /bin/bash#设置字体颜色tiffcolor="\033[0;35m"menucolor="\033[0;33m"todaycolor="\033[0;35;44m"start="\033[0m"#计算各个日期month=`date +%m`day=`date +%d`year=`date +%Y`weekday=`date -d "$year-$month-01" +%w`nextmonth=`expr $month + 1`today=`date +%d`#计算本月有多少天differ=$(( ($(date -d "$year-$nextmonth-01" +%s) - $(date +%s))/(24*60*60) )) days=`expr $differ + $day`#打印标题echo -en "${menucolor}"echo -en "\t $year $month\n"echo "SUN MON TUE WEN THU FRI SAT"echo -en "${start}"#打印空格if [ $weekday -ne 0 ];thenfor((i=1;i<=$weekday;i++))do echo -n " " echo -n " "donefi#打印日期for((i=1;i<=$days;i++))do printf "%s" " " echo -en "${tiffcolor}" #今天高亮显示 if [ $today -eq $i ];then echo -en "${todaycolor}" fi printf "%2d" $i echo -en "${start}" echo -en " " if [ $((($weekday+$i)%7)) == 0 ];then echo "" fi# printf "%3d " $idoneecho ""执行结果:
扩展:给定任意日期,打印当月的日期
#! /bin/bash#date=$1tiffcolor="\033[0;35m"menucolor="\033[0;33m"todaycolor="\033[0;35;44m"start="\033[0m"if [ $# -ne 1 ];then echo "plz input the date" exit 1fidate=$1count=`echo $date |grep -o '-'|wc -l`if [ $count -ne 2 ];then echo "plz input correct date" exit 1fiyear=`echo $date|cut -d "-" -f 1`month=`echo $date|cut -d "-" -f 2`day=`echo $date|cut -d "-" -f 3`expr $year + $month + $day + 0 &>/dev/nullif [ $? -ne 0 ];then echo "plz input a correct date" exit 1elif [ $month -gt 12 -o $month -eq 0 ];then echo "plz input the month between 1 and 12" exit 1elif [ $day -gt 31 -o $day -eq 0 ];then echo "plz input the day between 1 and 31" exit 1fi#nextmonth=$(( $month + 1))#month=`date -d "$date" +%m`#day=`date -d "$date" +%d`#year=`date -d "$date" +%Y`weekday=`date -d "$year-$month-01" +%w`if [ $month -eq 12 ];then newmonth=1 newyear=`expr $year + 1`else newyear=$year #nextmonth= expr $month + 1 newmonth=`expr $month + 1`fidays=$(( ($(date -d "${newyear}-${newmonth}-01" +%s) - $(date -d "$year-$month-01" +%s))/(24*60*60) )) #echo $daysecho -en "${menucolor}"echo -en "\t $year $month\n"echo "SUN MON TUE WEN THU FRI SAT"echo -en "${start}"if [ $weekday -ne 0 ];thenfor((i=1;i<=$weekday;i++))do echo -n " " echo -n " "donefifor((i=1;i<=$days;i++))do printf "%s" " " echo -en "${tiffcolor}" if [ $day -eq $i ];then echo -en "${todaycolor}" fi printf "%2d" $i echo -en "${start}" echo -en " " if [ $((($weekday+$i)%7)) == 0 ];then echo "" fi# printf "%3d " $idoneecho ""执行结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
DatePart函数返回给定日期的指定部分。DatePart(interval,date[,firstdayofweek[,firstweekofyear]])
本文实例讲述了Python自定义函数计算给定日期是该年第几天的方法。分享给大家供大家参考,具体如下:写一个函数,计算给定日期是该年的第几天.满足闰年的条件:闰年
本文实例讲述了php计算给定日期所在周的开始日期和结束日期。分享给大家供大家参考,具体如下:运行结果如下:WeekStart:2017-01-23--->Wee
本文实例讲述了javascript完美实现给定日期返回上月日期的方法。分享给大家供大家参考,具体如下:在项目开发中,使用javascript对日期进行处理时,因
本文实例讲述了PHP判断两个给定日期是否在同一周的方法。分享给大家供大家参考,具体如下:/***判断两日期是不是同一周*星期是按周日到周六*/functiong