Linux中date命令的时间加减
Time addition and subtraction of the date command in Linux.
————————————————————
以相加为例:
# 当前时间加1天
date -d "+1 day"
# 当前时间加1小时
date -d "+1 hour"
# 当前时间加1分钟
date -d "+1 minute"
date -d "+1 min"
# 当前时间加1秒
date -d "+1 second"
date -d "+1 sec"