在 .bat 文件中运行不同操作时获取错误消息

发布于 2024-11-19 17:07:21 字数 1459 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2024-11-26 17:07:21

发布你的脚本大纲会很有帮助。

假设脚本看起来像这样:

command1 params 2>>logfile

command2 params 2>>logfile

你可以这样修改它:

ECHO %DATE% %TIME%: Running command1 params...>>logfile
command1 params 2>>logfile
ECHO %DATE% %TIME%: Running command2 params...>>logfile
command2 params 2>>logfile

也就是说,当然,如果我正确理解你的意图。

在本例中,DATETIME 是系统环境变量。它们分别评估为当前系统日期和时间。当然,您可以省略它们。我只是认为如果与日志记录一起使用它们不会造成伤害。

Posting an outline of your script would be helpful.

Assuming the script looks something like this:

command1 params 2>>logfile

command2 params 2>>logfile

you could modify it like this:

ECHO %DATE% %TIME%: Running command1 params...>>logfile
command1 params 2>>logfile
ECHO %DATE% %TIME%: Running command2 params...>>logfile
command2 params 2>>logfile

That is, if I understood your intention correctly, of course.

DATE and TIME in this case are system environment variables. They are evaluated to the current system date and time respectively. You can omit them, of course. I just thought they wouldn't harm if used with logging.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文