如何将可配置分钟添加到其中包含当前时间的变量[重复]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将可配置分钟添加到其中包含当前时间的变量[重复]相关的知识,希望对你有一定的参考价值。

now=$(date +"%r")

$now目前的时间为12小时。我需要添加可配置的分钟到现在并将其保存在另一个变量中。请帮忙。

答案

使用date选项很容易做GNU -d

(但是你需要将变量名从now更改为其他名称,因为now-d "datestring"处理中的关键字)

例如:

foo=$(date +%r)        ## save current time in your format in foo
addmin=10              ## variable to add minutes to the time (10 here)
bar=$(date -d "$foo + $addmin minutes" +%r)  ## add minutes to time saving in bar
printf "foo: %s
bar: %s
" "$foo" "$bar"    ## output both

示例输出

foo: 09:14:53 PM
bar: 09:24:53 PM

以上是关于如何将可配置分钟添加到其中包含当前时间的变量[重复]的主要内容,如果未能解决你的问题,请参考以下文章

如何将可操作的控制字符从 JSON 文本元素传递到 razor 组件 Blazor 变量

如何将可编辑的文本和图像添加到threejs

如何将可编辑的文本和图像添加到threejs

如何将anaconda添加到环境变量中

如何将可观察对象发布的整数变量绑定到 SwiftUI 中的 textField?

如何阻止innerHtml表一遍又一遍地重复自己?