Windows/cmd.exe 相当于 Linux/bash 的 $ 是什么? -- 程序退出/返回代码?

发布于 2024-07-09 04:18:07 字数 382 浏览 9 评论 0原文

可能的重复:
如何获取该应用程序从 Windows 命令行退出代码?

在 Unix/bash 中,我可以简单地说:

$回显$?

从交互式和非交互式 shell 中找出程序的返回/退出代码。

现在,我如何在 Windows/cmd.exe 中执行等效操作?

Possible Duplicate:
How do I get the application exit code from a Windows command line?

In Unix/bash, I can simply say:

$ echo $?

to find out the return/exit code of a program, both from interactive and non-interactive shells.

Now, how can I do the equivalent in Windows/cmd.exe?

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

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

发布评论

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

评论(3

看透却不说透 2024-07-16 04:18:07

使用“errorlevel”,如下所示:

IF ERRORLEVEL 1 GOTO ERROR

errorlevel 命令有点特殊; 如果返回代码等于或高于指定的错误级别,则返回 true。 您还可以编写

IF %ERRORLEVEL% NEQ 0 GOTO ERROR

此页面很好地概述了如何在 .bat 文件中使用错误级别。

Use "errorlevel", like this:

IF ERRORLEVEL 1 GOTO ERROR

The errorlevel command is a little peculiar; it returns true if the return code was equal to or higher than the specified errorlevel. You can also write

IF %ERRORLEVEL% NEQ 0 GOTO ERROR

This page is a good overview of how to use errorlevels in .bat files.

甜是你 2024-07-16 04:18:07

等价的是:

echo %ERRORLEVEL%

The equivalent is:

echo %ERRORLEVEL%
疯狂的代价 2024-07-16 04:18:07

检查错误级别

check for the ERRORLEVEL

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