解决linux系统求前N月月份的bug

日常工作中,需要获取某个日期(20240531)的前N个月,通常会写命令

date -d "20240531 last-month" '+%Y%m'

我期望得到202404 但是很意外:

经过几轮测试,发现只要月内天数超过30天,即所有大月,计算都会有问题,于是为了解决这个问题,特意写了一个shell函数,代码如下:

bash 复制代码
function getLastMonth(){
# 用户输入的日期
current_date="$1"
# 月份偏移量
pos_month="$2"
 获取当前年
current_year=$(date -d "$current_date" '+%Y')

# 当前月份
current_month=$(date -d "$current_date" '+%m')

# 计算新的月份
let "new_month = current_month - pos_month"

# 如果结果的月份小于1,则需要调整年份和月份
if [ $new_month -lt 1 ]; then
  # 计算去年的月份
  let "new_month += 12"
  let "current_year -= 1"
fi
# 格式化输出为yyyymm
lastM=$(date -d "${current_year}-${new_month}-01" '+%Y%m')
echo $lastM
}

函数调用示例 mylastMonth=`getLastMonth 20240531 6`

可以获得202311月份

相关推荐
阑梦清川2 小时前
用户中心项目教程(二)---umi3的使用出现的错误
bug
JZC_xiaozhong18 小时前
支付宝“政府补贴”bug事件背后的权限管理启示
大数据·数据库·安全·ci/cd·金融·云计算·bug
做测试的喵酱18 小时前
在 JIRA 中利用仪表盘功能生成 Bug 相关图表的手册
bug·jira
我只有一岁半18 小时前
记一次数据库连接 bug
数据库·bug
伪_装1 天前
[Bug]libGL.so.1: cannot open shared object file: No such file or directory
人工智能·opencv·bug
_小杜小杜_1 天前
Jira中bug的流转流程
bug·jira
程序员的面试宝典2 天前
-bash: /java: cannot execute binary file
bug
qq_544329173 天前
需求13:审批流中,节点删除保存失败的bug
前端·javascript·typescript·bug
一狐九4 天前
记录一个v-if与自定义指令的BUG
前端·vue.js·bug
奶油泡芙shi_caicai4 天前
记录往集合里添加集合时,用的同一个集合对象,导致bug
bug