gpt4 book ai didi

linux - 使用 bash 查找下个月

转载 作者:太空宇宙 更新时间:2023-11-04 04:38:16 25 4
gpt4 key购买 nike

我通过 bash 获取当前年份和月份。然而,当我尝试查找下一年和下一个月时,我遇到了错误。打印201905

mydate=$(date +'%Y');
mymonth=$(date +'%m');

都失败了

nexty=$(date +'%Y') -d next year;
nextm=$(date +'%m') -d 'next month';

最佳答案

右括号放错位置了。请尝试以下操作:

nexty=$(date +'%Y' -d 'next year');
nextm=$(date +'%m' -d 'next month');

关于linux - 使用 bash 查找下个月,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56042001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com