如何将 n 小时添加到指定时间?

如何将 n 小时添加到指定时间?

我想得到一个时间,比如说 6:45am,然后加上一些小时数,比如说 1.45 小时,得到另一个时间。所以我想在 6:45am 上加上 1.45 小时,得到另一个时间。

有没有命令行工具可以实现这个功能?我在 Google 上搜索过,也读过手册页,date但没找到类似的东西。wcalc似乎无法处理时间计算。

编辑:2015 年 3 月 6 日。这是我最终使用十进制小时的脚本。它可以使用一些错误检查来确保 HH:MM 使用 2 位数字表示小时。

#!/bin/bash
# Mar 6, 2015
# Add decimal hours to given time. 
# Syntax: timeadd HH:MM HOURS
# There MUST be 2 digits for the hours in HH:MM.
# Times must be in military time. 
# Ex: timeadd 05:51 4.51
# Ex: timeadd 14:12 2.05
echo " "
# If we have less than 2 parameters, show instructions and exit.
if [ $# -lt 2 ]
then
    echo "Usage: timeadd HH:MM DECHOURS"
    exit 1
fi
intime=$1
inhours=$2
# Below is arithmetic expansion $(())
# The bc calculator is standard on Ubuntu. 
# Below rounds to the minute. 
inminutes=$(echo "scale=0; ((($inhours * 60)*10)+5)/10" | bc)
echo "inminutes=$inminutes"
now=$(date -d "$intime today + $inminutes minutes" +'%H:%M')
echo "New time is $now"

答案1

命令行:

$ now=$(date -d "06:45 today + 105 minutes" +'%H:%M')
$ echo "$now"
08:30

$now将保持您指定的时间。

您可以在“和”之间放置很多东西;比如当前时间并在其上添加 105。


$now=$(date -d "06:45 today + 2.5 hour" +'%H:%M')
date: invalid date `06:45 today + 2.5 hour'
$now=$(date -d "06:45 today + 2:30 hour" +'%H:%M')
date: invalid date `06:45 today + 2:30 hour'
$ now=$(date -d "06:45 today + 2 hour" +'%H:%M')
$ echo "$now"
08:45

不允许使用小数...


来自评论:要获得 1.45 个十进制小时的答案:

$ now=$(date -d "06:45 today + $((145 * 60 / 100)) minutes" +'%H:%M')
$ echo "$now:
8:12

相关内容