Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是编码新手。我正在使用echo %time%来获取时间。现在我的目标是在这段时间内增加 4 小时并创建输出。最好只有几小时和几分钟的时间。
echo %time%
告诉您正在处理批处理脚本会有所帮助,使帮助更容易
您可以将时间拆分为小时和分钟:
set hh=%time:~0,2% set mm=%time:~3,2%
并增加 4 小时:
set /A hh=%hh%+4
然后将它们重新连接在一起,当时间超过 24 小时时不要忘记修复它,一个简单的 if 语句就可以了,然后分散 24 小时以获得正确的时间