文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么在shell中打印指定日期的日历

2023-06-09 13:12

关注

怎么在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 ""

执行结果:

怎么在shell中打印指定日期的日历

扩展:给定任意日期,打印当月的日期

#! /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 ""

执行结果:

怎么在shell中打印指定日期的日历

看完上述内容,你们掌握怎么在shell中打印指定日期的日历的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯